* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    color: #1f2937;
}

.login-container {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.login-info {
    background: linear-gradient(135deg, #071a2f, #123f68);
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand h1 {
    font-size: 34px;
    font-weight: 700;
}

.brand h1 span {
    color: #d4af37;
}

.login-info-content {
    max-width: 520px;
    margin: auto 0;
}

.login-info-content .subtitle {
    color: #d4af37;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
}

.login-info-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.login-info-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #d8e1ea;
}

.login-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #ffffff;
}

.login-card {
    width: 100%;
    max-width: 430px;
}

.login-header {
    margin-bottom: 35px;
}

.login-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
    color: #071a2f;
}

.login-header p {
    color: #6b7280;
    font-size: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: #123f68;
    box-shadow: 0 0 0 3px rgba(18, 63, 104, 0.12);
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 14px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-options a {
    color: #123f68;
    text-decoration: none;
    font-weight: 600;
}

.form-options a:hover {
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    border: none;
    background: #123f68;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login:hover {
    background: #0c2f50;
}

.register {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

.register a {
    color: #123f68;
    font-weight: 600;
    text-decoration: none;
}

.register a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .login-container {
        grid-template-columns: 1fr;
    }

    .login-info {
        min-height: 350px;
        padding: 40px 30px;
    }

    .login-info-content h2 {
        font-size: 32px;
    }

    .login-area {
        padding: 50px 25px;
    }
}

@media (max-width: 500px) {
    .login-info {
        padding: 30px 20px;
    }

    .login-info-content h2 {
        font-size: 27px;
    }

    .login-area {
        padding: 40px 20px;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}



.form-group select {
    width: 100%;
    padding: 12px 14px;

    border: 1px solid #d1d5db;
    border-radius: 8px;

    background: white;
    color: #374151;

    font-size: 14px;
    outline: none;
}

.form-group select:focus {
    border-color: #123f68;
}