﻿/*PAGINA DE LOGIN*/
.login-main-container {
    display: flex;
    flex-wrap: wrap;
    height: 80vh; 
    padding: 0 2rem;
    border: 1px solid var(--lila-color);
    box-shadow: var(--lila-color) 0px 0px 11px 0px;
    border-radius: 3rem;
    justify-content: center;
}

.login-image-section {
    display: flex;
    align-items: center;
    margin: 5rem
}

.image-container {
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    overflow: hidden;
}

.login-form-section, .form-group {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;

}

input {
    display: table-cell;
    /* width: 25%; */
    padding: .5rem;
    outline: none;
    border: 1px solid var(--lila-color);
    border-radius: 1rem;
    font-size: 2rem;
    color: black;
    overflow: auto;
}

.form-group label {
    display: block;
    margin-bottom: 5px; /* Opcional: añade un pequeño espacio debajo de la etiqueta */
}

.form-group input {
    display: block;
    width: 100%; /* Opcional: hace que el input ocupe todo el ancho del contenedor */
}
