#auth{
    background-color: rgb(242, 242, 242);
}

#auth .custom-card{
    border-radius: 32px;
    border: none;
}

#auth .input-with-icon{
    position: relative;
}

#auth .input-with-icon input,
#auth .input-with-icon select{
    padding-right: 42px;
    padding-left: 42px;
    padding-top: 12px;
}

#auth .input-with-icon .form-icon{
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

.submit-form{
    background-color: #4DCBA3;
    color: white;
    height: 60px;
    border-radius: 8px;
    border: none;
}

.main-topic{
    font-size: 48px;
}

.small-text{
    font-size: 1rem;
}

.form-control-lg{
    height: 60px;
    border-width: 1px;
    border-style: solid;
    border-radius: 8px;
    background-color: white;
    color: #686868
}

.form-control-lg::placeholder{
    color: #686868;
}

.checkbox-wrapper{
    display: flex;
    align-items: center;
}

.checkbox-wrapper .custom-checkbox{
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    appearance: none;
    background-color: white;
    border: 1px solid lightgray;
}

.checkbox-wrapper .custom-checkbox:checked{
    background-color: #4DCBA3;
    border: none;
}

.checkbox-wrapper .custom-checkbox::before{
    content: '';
    position: absolute;
    z-index: 2;
    width: 5px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    top: 6px; 
    left: 9px;
    transform: rotate(45deg) scale(1.8);
}

label,
a{
    font-weight: normal;
    font-style: normal;
    text-align: left;
    color: #686868;
}

.select-wrapper{
    width: 100%;
    position: relative;
}

.select-wrapper select{
    width: 100%; 
    height: 60px;
    border: 1px solid lightgray;
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    background-color: white;
    color: #686868;
}

.select-wrapper select option{
    border-radius: 10px;
}

.select-wrapper::before{
    content: '';
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: #4DCBA3;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    pointer-events: none;
}

.select-wrapper::after{
    content: '';
    position: absolute;
    z-index: 2;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fafafa;
    border-bottom: 2px solid #fafafa;
    transform: rotate(45deg);
    margin-top: -6px;
    right: 25px;
    top: 50%;
}


@media(min-width: 1200){
    .small-text{
        font-size: 18px !important;
    }

    .main-topic{
        font-size: 48px;
    }
}

