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: 920px;
    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: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-control {
    height: 52px;
    border-radius: 14px;
}

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

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

@media (max-width: 768px) {
    .login-card {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .login-brand {
        padding: 35px;
    }

    .login-form {
        padding: 35px;
    }
}