/* Login page styles */
body {
    background-color: #f8f9fa;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 2.5rem;
}

/* Form styles */
.form-control {
    border-radius: 5px;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    font-size: 0.9rem;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
}

/* Button styles */
.btn-primary {
    padding: 0.75rem 1rem;
    font-weight: 500;
    border-radius: 5px;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

/* Remember me checkbox */
.form-check-input {
    cursor: pointer;
}

.form-check-label {
    font-size: 0.9rem;
    color: #6c757d;
    cursor: pointer;
}

/* Links */
a {
    color: #007bff;
    transition: color 0.2s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: none;
}

/* Alert styles */
.alert {
    border-radius: 5px;
    font-size: 0.9rem;
    border: none;
}

.alert-danger {
    background-color: #fff5f5;
    color: #dc3545;
}

/* Loading state */
.btn-loading {
    position: relative;
    pointer-events: none;
    color: transparent !important;
}

.btn-loading:after {
    content: '';
    position: absolute;
    width: 1rem;
    height: 1rem;
    top: calc(50% - 0.5rem);
    left: calc(50% - 0.5rem);
    border: 2px solid #fff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spin 0.75s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .card-body {
        padding: 1.5rem;
    }
} 