.body {
    margin: 0;
    padding: 0;
    background-size: cover;
    background-color: var(--color-3);
    font-family: 'Inter Tight', 'sans-serif';
    height: 100vh;
}

h1 {
    color: #333;
}

.cuadro {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.dialog-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 20px;
    overflow-x: auto;
}

.panel_session{
    width: 100%;
    max-width: 990px;
    padding: 10px;
    box-sizing: border-box;
    display: inline-flex;
}

/* Estilo para pantallas grandes (escritorios, pantallas grandes) */
@media (min-width: 1024px) {
    .panel_session {
        max-width: 990px;
    }
}

/* Estilo para pantallas medianas (tablets) */
@media (min-width: 768px) and (max-width: 1023px) {
    .panel_session {
        padding: 10px;
    }
}

/* Estilo para pantallas pequeñas (móviles) */
@media (max-width: 767px) {
    .dialog-container{ /* Evita que se corte en pantallas bajas */
        padding-top: 30px;
    }
    .panel_session {
        display: inline-block;
        box-sizing: border-box;
        max-width: 90%;
    }
    .dialog-left {
        margin-bottom: 70px;
        padding: 10px;
    }
}


.dialog-left {
    width: 600px;
    height: 430px;
    margin-right: 70px;
    border-radius: 10px;
    border: 0; /* Grosor y color del borde */
    background-color: #FFFFFF; /* Color de fondo del div */
    padding: 20px;
}

.dialog-right {
    width: 400px;
    height: 430px;
    border: 0; /* Grosor y color del borde */
    background-color: #FFFFFF; /* Color de fondo del div */
    padding: 20px; /* Espaciado interno para separar el contenido del borde */
    border-radius: 10px;
}

.linea{
    align-items: center;
    border-bottom: 1px solid #002F20;
    display: flex;
    margin: 20px 16px;
    text-align: center;
}

.clean-default {
    text-decoration: none;
}

.clean-default:hover, .clean-default:focus, .clean-default:visited {
    text-decoration: none !important;
    color: inherit;
}

.link-icon{
    appearance: none;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--color-4);
    border: 1px solid #004b39;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    color: #FFFFFF;
}

.link-icon:hover {
    text-decoration: none;
    background-color: var(--color-2);
    border: 1px solid var(--color-2);
}

.link-recover{
    text-decoration: none;
    cursor: pointer;
    color: var(--color-4);
}

.link-recover{
    text-decoration: none !important;
    color: var(--color-1);
}

.input{
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    border: 2px solid #b1bfbb;
    background-color: var(--color-3);
    border-radius: 5px;
    color: #212529;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-tap-highlight-color: transparent;
    -webkit-focus-ring-color: transparent;
}

.input:focus{
    border-color: #699f8f !important;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.5) !important;
}

.boton {
    background-color: var(--color-4);
    width: 100%;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.boton:hover {
    background-color: var(--color-1);
}

.external_login{
    width: 45%;
    border-radius: 10px;
    border: none;
    background-color: #FFFFFF;
    padding: 20px;
    display: inline-block;
}

.input-wrapper {
   position: relative;
   width: 100%;
}

.input-icon {
   color: #191919;
   position: absolute;
   width: 20px;
   height: 20px;
   right: 12px;
   top: 50%;
   transform: translateY(-50%);
}

.error_write{
    font-family: "Inter Tight", serif;
    font-size: 12px;
    padding: 5px;
    word-wrap: break-word;      /* Permite que las palabras largas se ajusten a la siguiente línea */
    line-height: 1.0;           /* Espaciado entre líneas para mejorar la legibilidad */
    overflow-wrap: break-word;
    color:#c5725c;
    border: 1px solid #c5725c;
    background-color: #f6dee3;
    border-radius: 5px;
}

.ok_write{
    font-family: "Inter Tight", serif;
    font-size: 12px;
    color: #176451;
    padding: 7px;
    word-wrap: break-word;      /* Permite que las palabras largas se ajusten a la siguiente línea */
    line-height: 1.5;           /* Espaciado entre líneas para mejorar la legibilidad */
    overflow-wrap: break-word;
    border: 1px solid #176451;
    background-color: #d9fae0;
    border-radius: 3px;
}


.close_session{
    color: #FFFFFF;
    background-color: #781321;
    border: 1px solid #781321;
    padding: 4px;
    text-align: center;
    border-radius: 7px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.close_session:hover{
    opacity: 0.8;
}

.panel_recover{
    width: 50%;
    border: 0; /* Grosor y color del borde */
    background-color: #FFFFFF; /* Color de fondo del div */
    padding: 20px; /* Espaciado interno para separar el contenido del borde */
    border-radius: 10px;
}
