/* DazilTrack - Authentication Styles */

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.card-body {
    padding: 3rem;
}

/* Logo and Brand */
.bi-clock {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Form Enhancements */
.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    transform: translateY(-1px);
}

.input-group-text {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: 2px solid #667eea;
    color: white;
    border-radius: 10px 0 0 10px;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 10px 10px 0;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #5a6fd8, #6a4190);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Alert Enhancements */
.alert {
    border: none;
    border-radius: 10px;
    font-weight: 500;
}

.alert-danger {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
}

.alert-success {
    background: linear-gradient(45deg, #51cf66, #40c057);
    color: white;
}

/* Divider */
.text-muted {
    position: relative;
    display: inline-block;
    padding: 0 1rem;
}

.text-muted::before,
.text-muted::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: #dee2e6;
}

.text-muted::before {
    right: 100%;
}

.text-muted::after {
    left: 100%;
}

/* Link Styles */
a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-body {
        padding: 2rem 1.5rem;
    }
    
    .text-muted::before,
    .text-muted::after {
        width: 30px;
    }
}

@media (max-width: 576px) {
    .card-body {
        padding: 1.5rem 1rem;
    }
    
    .text-muted::before,
    .text-muted::after {
        width: 20px;
    }
}

/* Animation */
.card {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

.form-control.is-valid {
    border-color: #51cf66;
    box-shadow: 0 0 0 0.2rem rgba(81, 207, 102, 0.25);
}

.invalid-feedback {
    color: #ff6b6b;
    font-weight: 500;
}

.valid-feedback {
    color: #51cf66;
    font-weight: 500;
}

/* Loading State */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn .spinner-border {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
} 