/* Custom styles goes here */

/* ===== AUTHENTICATION STYLES ===== */

:root {
    --primary-color: #7367f0;
    --primary-dark: #5e50ee;
    --secondary-color: #ea5455;
    --success-color: #28c76f;
    --warning-color: #ff9f43;
    --info-color: #00cfe8;
    --dark-color: #4b4b4b;
    --light-color: #f8f8f8;
    --border-color: #d8d6de;
    --text-muted: #6e6b7b;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.auth-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 700px;
}

.auth-left {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.auth-right {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 60px 40px;
}

    .auth-right::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.1);
        opacity: 0.1;
    }

.auth-right-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.brand-logo {
    text-align: center;
    margin-bottom: 40px;
}

    .brand-logo h2 {
        color: var(--primary-color);
        font-weight: 700;
        margin-bottom: 0;
    }

    .brand-logo i {
        margin-right: 10px;
    }

.welcome-section {
    margin-bottom: 40px;
}

    .welcome-section h3 {
        font-weight: 600;
        margin-bottom: 10px;
    }

    .welcome-section p {
        color: var(--text-muted);
        font-size: 1.1rem;
    }

.auth-form .form-group label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.auth-form .input-group {
    border-radius: 8px;
    overflow: hidden;
}

.auth-form .input-group-text {
    background-color: #f8f8f8;
    border: 1px solid var(--border-color);
    border-right: none;
    padding: 12px 15px;
}

.auth-form .form-control {
    border: 1px solid var(--border-color);
    border-left: none;
    padding: 12px 15px;
    font-size: 14px;
}

    .auth-form .form-control:focus {
        box-shadow: none;
        border-color: var(--primary-color);
    }

.auth-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.auth-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 12px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .auth-form .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(115, 103, 240, 0.4);
    }

/* Right Side Features */
.features-section h4 {
    font-weight: 600;
    margin-bottom: 30px;
}

.feature-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

    .feature-link:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        transform: translateX(5px);
    }

    .feature-link i {
        width: 20px;
        margin-right: 15px;
        font-size: 16px;
    }

.quick-links h6 {
    font-weight: 600;
}

.quick-links .badge {
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
}

.footer-section {
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .auth-card {
        min-height: auto;
    }

    .auth-left {
        padding: 40px 30px;
    }

    .auth-right {
        padding: 40px 30px;
    }
}

@media (max-width: 767.98px) {
    body {
        padding: 10px;
    }

    .auth-left {
        padding: 30px 20px;
    }

    .auth-right {
        padding: 30px 20px;
    }

    .brand-logo h2 {
        font-size: 1.5rem;
    }

    .welcome-section h3 {
        font-size: 1.3rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-left {
    animation: fadeInUp 0.6s ease-out;
}

.auth-right {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Demo Account Info */
.demo-accounts {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    border-left: 4px solid var(--primary-color);
}

    .demo-accounts h6 {
        color: var(--dark-color);
        margin-bottom: 10px;
        font-weight: 600;
    }

.account-info {
    font-size: 0.85rem;
    color: var(--text-muted);
}

    .account-info strong {
        color: var(--primary-color);
    }


/* Custom styling for the registration form */
.section-title {
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.form-section {
    margin-bottom: 25px;
}
  
