:root {
    --primary-color: #e4840c;
    --secondary-color: #1b184d;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;

}





.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    width: 100%;
}

.logo {
    max-width: 600px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 20x;
    background-color: white;
}

.login-container {
    max-width: 450px;
    width: 100%;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.input-group-text {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.forgot-password {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 20px;
}

.forgot-password a {
    color: var(--dark-color);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.forgot-password a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.social-login {
    text-align: center;
    margin-top: 25px;
    position: relative;
}

.social-login::before {
    content: "";
    display: block;
    height: 1px;
    background-color: #ddd;
    margin-bottom: 25px;
}

.social-login::after {
    content: "Our Social Media Platforms";
    display: inline-block;
    background: white;
    padding: 0 10px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: #777;
    font-size: 0.9rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--dark-color);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-text {
    text-align: center;
    margin-top: 25px;
    color: #777;
    font-size: 0.95rem;
}

.footer-text a {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s;
}

.footer-text a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.password-toggle {
    cursor: pointer;
    background-color: var(--light-color);
    border-left: 0;
    color: var(--dark-color);
}

a {
    text-decoration: none;
}

.footer {
    width: 100%;
    padding: 15px;
    background-color: #f8f9fa;
    border-top: 1px solid #ccc;
    text-align: center;
}

@media (max-width: 576px) {
    .login-container {
        padding: 30px 20px;
        margin: 20px;
    }

    .logo {
        max-width: 350px;
        margin: auto;
    }

    .main-container {
        padding-bottom: 70px;
        /* Space for footer */
    }

    .social-login::after {
        font-size: 0.6rem;
    }
}

.taleexict-brand {
    position: relative;
    display: inline-block;
}

.taleexict-brand:hover {
    color: #c1121f !important;
    transform: translateY(-2px);
}

.taleexict-brand::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #e63946;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.taleexict-brand:hover::after {
    transform: scaleX(1);
}

.footer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.9rem;
    color: #495057;
}


