﻿
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    
}

.user-details-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.user-details-card {
    width: 100%;
    max-width: 560px;
    background: #0B031B;
    border-radius: 28px;
    padding: 60px 60px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 40px 120px rgba(0,0,0,0.65);
    box-sizing: border-box;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.page-subtitle {
    font-size: 15px;
    color: #b7b9d3;
    margin: 0;
}


.profile-form {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

    .profile-form .form-field {
        width: 100%;
    }

    .profile-form label {
        display: block;
        margin-bottom: 6px;
        font-size: 14px;
        color: #d6d8f0;
    }

    .profile-form input:not([type="checkbox"]) {
        width: 100%;
        height: 60px;
        padding: 0 20px;
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,0.08);
        background: rgba(255,255,255,0.06);
        color: #ffffff;
        font-size: 15px;
        box-sizing: border-box;
        transition: .25s ease;
    }

        .profile-form input:not([type="checkbox"])::placeholder {
            color: #9aa0d3;
        }

        .profile-form input:not([type="checkbox"]):focus {
            border-color: #5b7cff;
            box-shadow: 0 0 16px rgba(91,124,255,.35);
            outline: none;
        }


#remember-checkbox {
    margin-top: 4px;
}

.profile-form input[type="checkbox"] {
    accent-color: #5b7cff;
    transform: scale(1.1);
    margin-right: 8px;
}


.btn-login {
    width: 100%;
    height: 60px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg,#5b7cff,#7ea2ff);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
    margin-top: 10px;
}

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 35px rgba(91,124,255,.45);
    }



.error-alert {
    background: rgba(255,70,70,.12);
    border: 1px solid rgba(255,70,70,.25);
    color: #ffb3b3;
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 24px;
    font-size: 14px;
}



.login-footer {
    margin-top: 30px;
    text-align: center;
}

    .login-footer a {
        color: #8ea2ff;
        font-size: 14px;
        text-decoration: none;
        transition: .2s ease;
    }

        .login-footer a:hover {
            color: #ffffff;
        }

.login-info {
    margin-top: 15px;
    font-size: 13px;
    color: #aaa;
    text-align: center;
    line-height: 1.4;
}


@media (max-width: 768px) {

    .user-details-card {
        padding: 40px 30px;
        border-radius: 22px;
    }

    .page-title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {

    .login-section {
        padding: 30px 16px;
    }

    .user-details-card {
        padding: 32px 22px;
        border-radius: 18px;
        max-width: 100%;
    }

    .page-title {
        font-size: 24px;
    }

    .profile-form input:not([type="checkbox"]) {
        height: 54px;
        font-size: 14px;
    }

    .btn-login {
        height: 54px;
        font-size: 15px;
    }
}
