body{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100dvh;
    width: 100%;
    background-color: var(--veige);
}

#mainLogo{
    height: 140px;
    margin-bottom: 32px;
}

#regForm{
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    gap: 32px;
    height: auto;
    width: 50%;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.1s linear;
    input{
        width: 90%;
        border: none;
        padding: 14px 0;
        border-bottom: 1px solid var(--veige_semi);
        outline: none;

    }
    button{
        font-size: 1rem;
        width: 90%;
        padding: 14px 0;
        border: none;
        border-radius: 5px;
        background-color: var(--veige_oscuro);
        color: #fff;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.1s linear;
    }
    button:hover{
        background-color: var(--veige_semi);
    }
}   

#regForm:hover{
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}