@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;600;700&display=swap');

.flex{
    display: flex;
}

.flexcol{
    display: flex;
    flex-direction: column;
}

.centercenter{
    justify-content: center;
    align-items: center;
}

.justifycenter{
    justify-content: center;
}

.start{
    align-self: self-start;
    justify-content: flex-start;
}

.aligncenter{
    align-items: center;
}

.alignbaseline{
    align-items: baseline;
}


.relative{
    margin-bottom: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.margintop{
    margin-top: 20px;
}
.marginleft{
    margin-left: 20px;
}
.marginRight{
    margin-right: 20px;
}

.marginBottomTitle{
    margin-bottom: 12px;
}

.marginTopZero{
    margin-top: 0;
}

a{
    color: #21BE8B;
}

span{
    white-space: nowrap;
    font-weight: 600;
}

body{
    position: relative;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    color: #181872;
    margin: 0;
    padding: 0; 
    padding-bottom: 100px;
}

input{
    padding: 0 10px;
}

section{
    /* width: 96%; */
    display: flex;
}

p{
    font-weight: 400;
}

.h1_welcome{
    margin-bottom: 0;
    align-self: flex-start;
}

h2{
    font-size: 22px;
    font-weight: 700;
}

h3{
    font-weight: 700;
    margin-top: 30px;
    font-size: 18px;
    align-self: flex-start;
}

i{
    font-size: 20px;
    align-self: center;
}

select{
    transition: 1s;
    height: 50px;
    background-color: rgb(245, 245, 245);
}

.disabled{
    transition: 1s;
    background-color: #DADADA;
}

.disable{
    background-color: #999999 !important;
}

.grey{
    color: #999999;
}

.pointer{
    cursor: pointer; 
 }