﻿:root {
    --jefco-gold: #295c0e;
    --jefco-goldL: #4ba91a;
    --jefco-dark: #2f2f2f;
    --jefco-darkL: #6a685e;
    --jefco-light: #f9f7f3;
    --jefco-gray: #6b6b6b;
}

body {
    background-image: linear-gradient(rgba(47, 47, 47, 0.7), rgba(47, 47, 47, 0.7)), url('/content/assets/img/Mines.jpg');
    background-size: cover;
    background-position: center;
    font-family: "Gotham Rounded Book", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: auto;
}

.login-container {
    display: flex;
    width: 85%;
    max-width: 1200px;
    min-height: 550px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.login-form-section {
    background-color: var(--jefco-light);
    padding: 40px;
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-info-section {
    background: linear-gradient(135deg, var(--jefco-darkL) 0%, #1a1a1a 100%);
    padding: 40px;
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    color: white;
    position: relative;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    max-width: 200px;
    height: auto;
}

.login-type-selector {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    background: white;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.login-type-option {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-weight: bold;
    color: var(--jefco-gray);
}

    .login-type-option.active {
        background: var(--jefco-gold);
        color: white;
    }

.input-group {
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
}

input[type="text"], input[type="password"], input[type="email"] {
    width: 100%;
    padding: 15px 15px 15px 45px !important;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 15px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

    input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus {
        border-color: var(--jefco-gold);
        box-shadow: 0 0 0 2px rgba(201, 161, 74, 0.2);
        outline: none;
    }

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--jefco-gray);
}

.error-message {
    display: none;
    color: #b30000;
    font-size: 13px;
    text-align: left;
    margin-top: 5px;
}

.login-button {
    background: var(--jefco-gold);
    color: white;
    font-weight: bold;
    font-size: 15px;
    padding: 12px 0;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

    .login-button:hover {
        background: #52992c;
    }

.language-button {
    color: var(--jefco-gray);
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.slider-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider {
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dots-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 20px 0;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .dot.active {
        background-color: var(--jefco-gold);
    }

h4 {
    color: var(--jefco-goldL) !important;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 10px;
}

    h4:first-child {
        margin-top: 0;
    }

p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 15px;
    line-height: 1.5;
}

.footer {
    margin-top: auto;
    text-align: right;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

    .footer p {
        color: rgba(255, 255, 255, 0.6) !important;
        margin: 0;
        font-size: 13px;
    }

    .footer a {
        color: var(--jefco-gold);
    }

.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 992px) {
    .login-container {
        flex-direction: column;
        width: 90%;
    }

    .login-form-section, .company-info-section {
        flex: 0 0 100%;
    }

    .company-info-section {
        min-height: 400px;
    }
}
.input-group{
    width:100%
}
.otp-timer-container {
    text-align: center;
    margin: 15px 0;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #295c0e;
}

.otp-timer {
    margin: 0;
    font-weight: bold;
    color: #428b1d !important;
}

    .otp-timer.warning {
        color: #ff6b35;
    }

    .otp-timer.expired {
        color: #dc3545;
    }

.otp-note {
    margin: 5px 0 0 0;
    font-size: 12px;
    color: #264056 !important;
}

#countdown {
    font-weight: bold;
    color: #007bff;
}

    #countdown.warning {
        color: #ff6b35;
    }

    #countdown.expired {
        color: #dc3545;
    }