﻿.login-page {
    min-height: calc(100vh - 130px);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f7fb;
    padding: 40px 20px;
}

.login-card {
    width: 100%;
    max-width: 430px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.login-header {
    text-align: center;
    padding: 30px 25px 20px;
    background: #4f46e5;
    color: white;
}

    .login-header h1 {
        margin: 0;
        font-size: 30px;
        font-weight: 600;
    }

    .login-header p {
        margin: 8px 0 0;
        font-size: 15px;
    }

.login-content {
    padding: 30px;
}

    .login-content h2 {
        text-align: center;
        margin-bottom: 8px;
        font-size: 26px;
    }

.login-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 7px;
        font-weight: 500;
    }

.form-control {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
}

    .form-control:focus {
        border-color: #4f46e5;
        outline: none;
        box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
    }

.remember-me {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 22px;
}

    .remember-me input {
        width: 16px;
        height: 16px;
    }

.login-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #4f46e5;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

    .login-button:hover {
        background: #4338ca;
    }

.login-footer {
    text-align: center;
    padding: 0 25px 25px;
}

    .login-footer p {
        margin: 0;
        color: #6b7280;
    }

    .login-footer a {
        color: #4f46e5;
        font-weight: 600;
        text-decoration: none;
    }

        .login-footer a:hover {
            text-decoration: underline;
        }
