.login-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #878787;
}

.login-card {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}


.logo span {
    color: #ffcc00;
}

.login-subtitle {
    color: inherit;
    font-size: 16px;
}

.login-body {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: inherit;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid inherit;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: inherit;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.forgot-password {
    color: inherit;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    border: none;
}

.btn-primary {
    background: #1a4a8a;
    color: white;
}

.btn-primary:hover {
    background: #1a4a8a;
}

.divider {
    text-align: center;
    margin: 20px 0;
    color: inherit;
    position: relative;
}

.divider::before, .divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: inherit;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.social-login {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.social-btn {
    flex: 1;
    padding: 10px;
    border: 1px solid inherit;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-btn:hover {
    background: inherit;
}

.register-link {
    text-align: center;
    margin-top: 20px;
}

.register-link a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

.register-link a:hover {
    text-decoration: underline;
}