/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-actions i {
    font-size: 1.2rem;
    color: #FFD700;
}

.login-options-btn {
    background: #FF8C00;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.login-options-btn:hover {
    background: #FF7F00;
}

/* Main Content Styles */
.main-content {
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #87CEEB, #B0E0E6);
    padding: 2rem 0;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 2rem;
    min-height: 70vh;
}

.left-section {
    background: linear-gradient(135deg, #87CEEB, #B0E0E6);
    border-radius: 10px;
}

.right-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Login Card Styles */
.login-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
}

.card-header h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.subtitle {
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #95a5a6;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.breadcrumb i {
    font-size: 0.8rem;
}

/* Login Tabs */
.login-tabs {
    display: flex;
    border-bottom: 2px solid #ecf0f1;
    margin-bottom: 2rem;
    overflow-x: auto;
}

.tab {
    background: none;
    border: none;
    padding: 1rem 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #7f8c8d;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: fit-content;
}

.tab:hover {
    color: #e74c3c;
}

.tab.active {
    color: #e74c3c;
    border-bottom-color: #e74c3c;
    font-weight: bold;
}

/* Login Content */
.login-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.integration-info {
    background: #f8f9fa;
    border-left: 4px solid #e74c3c;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
}

.integration-title {
    color: #e74c3c;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.info-text p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.info-text p:last-child {
    margin-bottom: 0;
}

.login-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.login-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Footer Styles */
.footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding: 0 2rem;
}

.footer-section h4 {
    color: #ecf0f1;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.copyright {
    font-size: 0.8rem !important;
    margin-top: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.contact-info {
    margin-top: 1rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #3498db;
    width: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .left-section {
        display: none;
    }

    .login-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .login-tabs {
        flex-wrap: wrap;
    }

    .tab {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .contact-info {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 1rem;
    }

    .main-content {
        padding: 1rem 0;
    }

    .content-wrapper {
        padding: 0 1rem;
    }

    .login-card {
        padding: 1rem;
        margin: 0;
    }

    .card-header h2 {
        font-size: 1.5rem;
    }

    .login-tabs {
        flex-direction: column;
    }

    .tab {
        border-bottom: 1px solid #ecf0f1;
        border-right: none;
    }

    .tab.active {
        border-bottom-color: #e74c3c;
        border-right: none;
    }
}

/* Additional Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-card {
    animation: fadeIn 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
