/* Authentication Specific Styles */

/* Sign In Page Specific */
.signin-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #e1e5eb;
    background: white;
    color: var(--dark-color);
    font-size: 18px;
    transition: all 0.3s;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-btn.google:hover {
    background-color: #db4437;
    color: white;
    border-color: #db4437;
}

.social-btn.facebook:hover {
    background-color: #4267B2;
    color: white;
    border-color: #4267B2;
}

.social-btn.twitter:hover {
    background-color: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
}

/* Sign Up Page Specific */
.form-row {
    margin-bottom: 1.5rem;
}

.required-field::after {
    content: " *";
    color: var(--danger-color);
}

.gender-options {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.gender-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gender-option input[type="radio"] {
    margin-right: 5px;
}

/* Checkbox Styles */
.custom-checkbox .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox .form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(106, 17, 203, 0.25);
}

/* Forgot Password Specific */
.instruction-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid var(--info-color);
}

.instruction-box h6 {
    color: var(--info-color);
    margin-bottom: 10px;
}

.instruction-box ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.instruction-box li {
    margin-bottom: 5px;
    font-size: 14px;
}

/* Dashboard Specific */
.navbar-brand img {
    height: 30px;
    width: auto;
}

.dashboard-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.dashboard-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray-color);
    font-size: 14px;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Spinner */
.spinner-border {
    width: 1.5rem;
    height: 1.5rem;
    border-width: 0.2em;
}