@import url('https://fonts.googleapis.com/css2?family=Assistant&family=Roboto:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Assistant&display=swap');

html{
    background: linear-gradient(to bottom, #0483a6, #000000);
    width: 100%;
    min-height: 100%;
    padding: 0;
    margin: 0;
}

body{
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.container {
    margin-top: 28vh;
    border-radius: 15px;
    background-color: #ffffff;
    padding: 50px;
}

/*Formatações gerais*/
h1 {
    font-size: 20pt;
    color: #015a95;
    font-weight: bolder;
    margin-bottom: 10px;
    padding: 0;
}

h2 {
    color: #005a95;
    font-size: 22pt;
    font-weight: bolder;
    margin-top: 30px;
}

label{
    color: #63789a;
    font-size: 12pt;
    display: block;
    width: 100%;
    margin: 2px 0 2px 0;
    font-weight: 400;
    padding: 4px 6px;
}

select{
    width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"] {
    display: block;
    height: 40px;
    padding: 4px 10px;
    font-size: 18px;
    color: #63789a;
    line-height: 1.4;
    background-color: #fff;
    background-image: none;
    border: 1px solid rgb(215, 215, 215);
    border-radius: 15px;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    margin-bottom: 15px;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder {
    color: #63789a;
}

input[type="text"]:not(select),
input[type="email"]:not(select),
input[type="tel"]:not(select),
input[type="number"]:not(select),
input[type="password"]:not(select) {
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
.select2-container--default .select2-selection--single:focus{
    box-shadow: none;
    border-color: rgba(226, 85, 10, 0.5);
    outline: none;
}
.select2-container .select2-container--default .select2-container--open{
    max-width: 100%;
}
input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="number"]:hover,
input[type="password"]:hover {
    box-shadow: none;
    border-color: #e2550a;
    outline: none;
}

.select2-container{
    display: inherit;
    height: 40px;
    font-size: 18px;
    color: #63789a;
    background-color: #fff;
    background-image: none;
    border: 1px solid rgb(215, 215, 215);
    border-radius: 15px;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    margin-bottom: 15px;
}

.btn-search {
    background-color: #e2550a; /* cor do botão */
    color: #fff;
    border: none;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 40px;
}
.btn-search:hover
{
    box-shadow: none;
    border-color: #e2550a;
    outline: none;
}

.btn-search i {
    font-size: 16px;
}

.btn {
    color: #555;
    background-color: #e8e8ec;
    margin-bottom: 10px;
}
.btn svg {
    fill: #555;
    width: 1.22857143em;
    height: 0.82857143em;
    margin: 0 2px 0 2px;
}
.btn a {
    color: red;
    text-decoration: none;
    padding: 6px 12px;
}
.btn-w-full {
    width: 100%;
}
.btn-action{
    background-color: #e2550a;
    color: #FFFFFF;
    font-weight: bolder;
}
.btn.btn-action:hover{
    background-color: rgba(226, 85, 10, 0.5);
    border-color: rgba(226, 85, 10, 0.5);
}
.btn-action svg {
    fill: #FFFFFF;
    width:  1.22857143em;
    height: 0.92857143em;
    margin: 0 2px 0 2px;
}
.btn-info{
    background-color: #037dd2;
    color: #FFFFFF;
    font-weight: bolder;
}
.btn-info svg {
    fill: #FFFFFF;
    width:  1.22857143em;
    height: 0.92857143em;
    margin: 0 2px 0 2px;
}

/* ==== Formatação Campo ==== */
.cep-field {
    .btn {
        min-width: 40px;
        max-width: 40px;
        background-color: #e2550a;
        color: #fff;
    }
}

/*Modal*/
/* Estilo para o fundo escuro */
/*.modal-overlay {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    min-width: 100%;*/
/*    height: 100%;*/
/*    background-color: rgba(0, 0, 0, 0.5);*/
/*    z-index: 49;*/
/*    display: none;*/
/*}*/

/* Estilo para o modal */
/*.modal {*/
/*    position: fixed;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    background-color: #fff;*/
/*    padding: 8px;*/
/*    border-radius: 4px;*/
/*    z-index: 50;*/
/*    display: none;*/
/*    min-width: 30vw;*/
/*}*/
/*.modal .modalFooter{*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    text-align: right;*/
/*}*/
/*.modal .modalFooter .btn-right{*/
/*    float: right;*/
/*}*/
