/* Authentication Pages Styles */

.auth-body {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.auth-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.auth-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f0fe 0%, #d2e3fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.auth-logo i {
    font-size: 2rem;
}

.auth-card .form-control {
    border-radius: 8px;
    padding: 0.6rem 0.75rem;
    border-color: #e0e5ec;
}

.auth-card .form-control:focus {
    border-color: #2a5298;
    box-shadow: 0 0 0 0.2rem rgba(42, 82, 152, 0.1);
}

.auth-card .input-group-text {
    border-radius: 8px 0 0 8px;
    border-color: #e0e5ec;
    background-color: #f8f9fa;
    color: #6c757d;
}

.auth-card .btn-primary {
    border-radius: 8px;
    font-weight: 500;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border: none;
    transition: all 0.3s ease;
}

.auth-card .btn-primary:hover {
    background: linear-gradient(135deg, #162d57, #1e3c72);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(42, 82, 152, 0.3);
}

@media (max-width: 576px) {
    .auth-card .card-body {
        padding: 1.5rem !important;
    }
    
    .auth-logo {
        width: 60px;
        height: 60px;
    }
    
    .auth-logo i {
        font-size: 1.5rem;
    }
}
