﻿
:root {
    --jefco-gold: #325769;
    --jefco-goldL: #05074A;
    --jefco-dark: #6a685e;
    --jefco-darkL: #6a685e;
    --jefco-light: #f9f7f3;
    --jefco-gray: #6b6b6b;
}

body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/content/assets/img/loginBG.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%, #cacacaeb 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;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
}

input[type="text"],
input[type="password"] {
    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 {
        border-color: var(--jefco-gold);
        box-shadow: 0 0 0 2px rgba(50, 87, 105, 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: #264056;
    }

.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: #f2f2f5;
    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);
    }

/* 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;
    }
}


