#passwd_reset_email input {
    width: 300px; 
    border-radius: 8px; 
    border: none; 
    font-size: 1rem; 
    padding: 10px; 
    height: auto; 
    background-color: #23272A; 
    color: #fff;
}
#passwd_reset_email input:focus {
    border: 1px solid #ccc;
}
#passwd_reset_email button {
    width: 300px;
    border-radius: 8px; 
    border: none; 
    margin-top: 6px; 
    background-color: #5865F2; 
    cursor: pointer; 
    padding: 6px; 
    height: auto;
    transition: 0.3s;
}
#passwd_reset_email button:hover {
    background-color: #313a9c; 
}

.code_input {
    width: 70px;
    border: none;
    font-size: 3rem;
    border-bottom: 1px solid #bbb;
    background-color: transparent;
    height: 80px;
    text-align: center;
    color: #fff;
}
.code_input:focus {
    border-bottom: 1px solid #007bff;
}
#code_verify_btn {
    width: 80%;
    font-weight: 600;
    font-size: 1rem;
    font-family: Inter, sans-serif;
    padding: 6px;
    border: none;
    border-radius: 8px;
    background-color: #5865F2;
    cursor: pointer;
    transition: 0.3s;
}
#code_verify_btn:hover {
    background-color: #313a9c; 
    transform: translate3d(0, -2px, 0);
}   


#password_form {
    display: flex;
    flex-direction: column;
    width: 400px;
}
#password_form input {
    width: 300px; 
    border-radius: 8px; 
    border: none; 
    font-size: 1rem; 
    padding: 10px; 
    height: auto; 
    background-color: #23272A; 
    color: #fff;
}
#password_form input:focus {
    border: 1px solid #ccc;
}
#password_form button {
    width: 300px;
    border-radius: 8px; 
    border: none; 
    margin-top: 6px; 
    background-color: #5865F2; 
    cursor: pointer; 
    padding: 6px; 
    height: auto;
    transition: 0.3s;
}
#password_form button:hover {
    background-color: #313a9c; 
    transform: translate3d(0, -2px, 0);
}

#change_container {
    cursor: pointer;
    font-family: Inter, sans-serif;
    display: none; 
    height: auto; 
    max-width: 300px;
    min-width: 100px;
    width: 100%;
    position: fixed; 
    padding: 20px;
    top: 20%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    border: 1px solid rgba(236, 72, 153, 0.45);
    border-radius: 14px;
    background: linear-gradient(160deg, #0B0B1A, #140F2A);;
    font-family: Inter, sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    z-index: 5000;
    box-shadow:
        0 0 0 1px rgba(236,72,153,0.15),
        0 0 35px rgba(168,85,247,0.25),
        0 30px 80px rgba(0,0,0,0.7);
}