@import url(../../../assets/css/estilos/global.css);


body {
    width: 100vw;
    height: 100vh;
}

.container-fluid {
    background-color: #e9e9e9;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.form-wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: white;
    margin-top: 3%;
    margin-bottom: 3%;
    border-radius: 10px;
}

.form-floating {
    display: flex;
    flex-direction: column;
}

.input-wrapper {
    width: 50%;
    min-height: 100px; /* Exemplo de altura mínima */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: white;
    border-radius: 10px;
}

.input-group {
    margin-top: 2%;
}