body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #f4f7fb 0%, #eaf0ff 100%);
    font-family: Arial, Helvetica, sans-serif;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.login-card {
    width: min(920px, 100%);
    min-height: 560px;
    display: grid;
    grid-template-columns: 42% 58%;
    border-radius: 28px;
    overflow: hidden;
    background: white;
    box-shadow: 0 25px 70px rgba(3, 22, 61, 0.15);
}

.login-brand {
    background: #031b3f;
    color: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.trophy {
    font-size: 76px;
    margin-bottom: 20px;
}

.login-brand h1 {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.login-brand p {
    color: #f6c344;
    font-size: 28px;
    font-weight: bold;
}

.login-form {
    padding: 64px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0b1736;
    margin: 0 0 10px;
}

.login-form form {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.form-field {
    display: grid;
    gap: 7px;
}

.form-field label {
    font-weight: 700;
    color: #071a3d;
}

.form-field small {
    color: #53627c;
    line-height: 1.35;
}

.form-control {
    height: 52px;
    border-radius: 14px;
    border: 1px solid #c8d2e2;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #1456d9;
    box-shadow: 0 0 0 4px rgba(20, 86, 217, 0.12);
}

.remember-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #25324d;
    font-size: 14px;
}

.remember-row input {
    width: 18px;
    height: 18px;
}

.btn-login {
    height: 54px;
    border-radius: 14px;
    background: #1456d9;
    color: white;
    font-weight: 700;
}

.btn-login:hover {
    background: #0d47bd;
    color: white;
}

.login-links {
    margin-top: 18px;
    text-align: center;
}

.login-links a {
    color: #1456d9;
    font-weight: 700;
    text-decoration: none;
}

.login-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .login-wrapper {
        padding: 18px;
        align-items: flex-start;
    }

    .login-card {
        width: 100%;
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .login-brand {
        padding: 32px;
    }

    .login-form {
        padding: 32px;
    }

    .login-form h2 {
        font-size: 28px;
    }
}
