@charset "UTF-8";
/* CSS Document */
:root{
    --color-primary: #0ca3dd;
    --color-gray: #545557;
    --family-primary: "Roboto", system-ui;
}

::placeholder{
    color: #fff!important
}
.btn{
    font-size: 15px;
    font-weight: 300
}
.btn:hover{
    opacity: .8
}
.form-control{
    border: 1px solid #808080;
    background-color: transparent;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    border-radius: 0
}
.form-control:focus{
    opacity: 1!important;
    border-color: #808080;
    background-color: transparent;
    color: #fff
}
textarea{
    height: 248px
}
.mh-100{
    min-height: 100px;
}
.min-vh-50{
    min-height: 50vh !important;
}