﻿/*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;
}

.image-container {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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;
}