﻿
* {
    box-sizing: border-box;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .btn-responsive {
        font-size: 14px !important; /* Reduce tamaño del texto */
        padding: 10px 20px !important; /* Reduce padding */
        width: 100%; /* Opción para que ocupen todo el ancho en móviles */
    }
}

@media (max-width: 480px) {
    .btn-responsive {
        font-size: 12px !important; /* Texto más pequeño en pantallas muy pequeñas */
        padding: 8px 15px !important;
    }
}

.btn-outline-light, .btn-outline-light.disabled, .btn-outline-light:disabled, .nav-tabs .nav-item > .btn-outline-light.nav-link:disabled {
    /* color: var(--bs-light-text-emphasis); */
    color: white !important;
}

body {
    background-image: url('/images/background/img_bg_empty_chairs.jpeg');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Ubuntu', sans-serif;
    height: 100vh;
    margin: 0;
}


p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

form {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 600px;
}

img.login_logo{
    max-height:30%;
    margin:30px 0 50px 0;
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.form-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .form-group checkbox {
        width: 16px;
        height: 16px;
        cursor: pointer;
    }

.options-container {
    padding:0;
    margin-bottom:25px;
    width:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.form-group label {
    cursor: pointer;
    color: #111;
}

.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
}

.container.right-panel-active .sign-in-container {
    transform: translateX(100%);
}

.sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.container.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

@keyframes show {
    0%, 49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%, 100% {
        opacity: 1;
        z-index: 5;
    }
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.container.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

.overlay {
    background: #014d93;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #FFFFFF;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 75%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left {
    transform: translateX(-20%);
}

.container.right-panel-active .overlay-left {
    transform: translateX(0);
}

.overlay-right {
    right: 0;
    transform: translateX(0);
}

.container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #222;
    color: #fff;
    padding: 15px 20px;
    z-index: 999;
}

    footer a {
        color: #3c97bf;
        text-decoration: none;
    }

.blinkMe {
    animation: blinker 1s linear infinite;
}