.one {
    background-color: #1e293b;
    width: 350px;
    height: 400px;
    border-radius: 20px;
}

.outer_one {
    display: flex;
    align-items: center;
    justify-content: center;
}

h1{
    text-align: center;
    color: #f8fafc;
}
img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    border: 3px solid #38bdf8;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.6);
}

label {
    text-align: center;
    color: #cbd5e1;
    font-size: 25px;
}

input {
    width: 300px;
    height: 20px;
    background-color: #334155;
    color: #f8fafc;
    border: 1px solid #475569;
}

.form_box {
    margin-top: 20px;
}

button {
    width: 200px;
    border-radius: 20px;

    background-color: #38bdf8;
    color: #0f172a;
    border: none;
}

button:hover {
    background-color: #0ea5e9;
}

input {
    border-radius: 5px;

}

input:focus {
    border: 1px solid #38bdf8;
    outline: none;
}