@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gabarito", sans-serif;
}

button{
    cursor: pointer;
    border: none;
}

body{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2vh;
}

.logo{
    width: 25%;
    margin-bottom: 4vh;
}

input, select, button{
    width: 25%;
    padding: 1.2vh 1.5vh;
    border-radius: 13px;
    font-size: 17pt;
}

input, select{
    border: 2px solid black;
}

input::placeholder{
    color: #000000a1;
}

.buttonLogin{
    background-color: var(--1-blue);
    color: white;
}







.div_ta_checkbox {
    width: 25%;

    display: flex;
    align-items: center;
    flex-direction: row;

    gap: 1vh;

    font-size: 16pt;

    cursor: pointer;
}

.div_check_box_ta {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background-color: var(--theme);
    border: 3px solid #000000;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
