* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #0046ad 0%, #0093e9 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-wrapper {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.branding {
    color: white;
    margin-bottom: 30px;
}

.logo {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 5px;
}

.tagline {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

.login-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #edf2f7;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #0093e9;
}

.btn-primary {
    width: 100%;
    background-color: #0046ad;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.btn-primary:hover {
    background-color: #003584;
}

.separator {
    margin: 25px 0;
    border-bottom: 1px solid #eee;
    line-height: 0.1em;
}

.separator span {
    background: #fff;
    padding: 0 15px;
    color: #aaa;
    font-size: 0.85rem;
}

.btn-secondary {
    width: 100%;
    background: transparent;
    border: 2px solid #0046ad;
    color: #0046ad;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.footer {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

.footer strong {
    color: white;
}
