/* Custom styles for the Simple Auth App */

body {
    background-color: #f8f9fa;
}

/* Custom navbar styling */
.navbar {
    background-color: #1c334e !important;
}

.navbar-brand {
    font-weight: bold;
}

.navbar-brand img {
    height: 40px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* Responsive navbar logo */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 30px;
    }
    
    .navbar-brand span {
        font-size: 16px;
    }
}

/* Logo styling */
.navbar-brand img {
    height: 40px;
    width: auto;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Responsive logo */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 32px;
        margin-right: 8px;
    }
    
    .navbar-brand span {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 28px;
        margin-right: 6px;
    }
    
    .navbar-brand span {
        font-size: 1rem;
    }
}

.jumbotron {
    background: linear-gradient(135deg, #667eea 0%, #4ba29f 100%);
    color: white;
}

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 10px;
}

.btn {
    border-radius: 25px;
    font-weight: 500;
}

.form-control {
    border-radius: 10px;
    border: 1px solid #dee2e6;
    padding: 12px 16px;
}

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

.alert {
    border-radius: 10px;
    border: none;
}

/* Animations */
.card {
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
}

.btn {
    transition: all 0.2s ease-in-out;
}

.btn:hover {
    transform: translateY(-1px);
}

/* Dashboard specific styles */
.badge {
    margin-right: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .jumbotron h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}
