.login-card {
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 30px;
}

.input-group-text {
    border-left: none;
}

.form-control {
    border-right: none;
}

.btn-primary {
    background-color: #3b82f6;
    font-weight: 500;
    padding: 10px;
}

.auth-background {
    min-height: 100vh;
    background-color: #f8f9fa;
}

/* Ensure form inputs have the right styling when focused */
.form-control:focus {
    border-right: none;
    box-shadow: none;
}

.input-group .form-control:focus + .input-group-text {
    border-color: #86b7fe;
}

/* Improve icon styling */
.auth-icon {
    font-size: 2rem;
    color: #3b82f6;
} 