body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.back-btn-container {
    position: absolute;
    top: 20px;
    left: 20px;
}

.background-image {
    background-image: url('../assets/carpoint-section-bg.webp');
    background-size: cover;
    opacity: 0.4;
    filter: blur(8px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#recover_panel {
    width: 35%;
    max-width: 400px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1em;
}

.input-container {
    width: 100%;
}

.input-label {
    text-align: left;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.input-box {
    display: flex;
    width: 100%;
}

#rec_email,
#rec_seccode,
#password,
#password_repeat {
    padding: 12px;
    border: none;
    border-radius: 8px;
    width: 100%;
    color: #e0e0e0;
    background-color: #2a2a2a;
    border: 1px solid #444;
    transition: border-color 0.3s;
}

#rec_email:focus,
#rec_seccode:focus,
#password:focus,
#password_repeat:focus {
    outline: none;
    border-color: #F41626;
}
#recover_password,
#change_password {
    margin-top: 24px;
    width: 90%;
    padding: 12px;
    background-color: #F41626;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: bold;
}

#recover_password:hover,
#change_password:hover {
    transform: scale(1.02);
    background-color: #8f0000;
}

#login-error {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #F41626;
}

#login_site {
    color: #F41626;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

#login_site:hover {
    color: #ff7f7f;
}

.login-code {
    display: flex;
}

.security-code {
    width: 88px;
    margin: 0 4px;
    background-color: #2a2a2a;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e0e0e0;
    font-size: 1.2rem;
    border: 2px solid #444;
}

