/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


/* Estilo da barra de rolagem */
body::-webkit-scrollbar {
    width: .3em;
}
   
body::-webkit-scrollbar-track {
    box-shadow: transparent;
}
   
body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #ffbc51;
}


/*Caracteristicas Gerais */
* {
    margin: 0;
    padding: 0;
    color: black;
    box-sizing: border-box;
    font-family: "Inter", sans-serif
}

/* Caracteristica do corpo */
body {
    min-height: 100vh;
    display: flex;
    background-color: #091931;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container{
    position: relative;
    max-width: 700px;
    width: 100%;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); 
}

/*Caracteristicas da Cabeça*/

.container header{
    font-size: 1.5rem;
    color: #333;
    font-weight: 500;
    text-align: center;
}

/*Caracteristica do Formulario*/
.container .form{
    margin-top: 30px
}

.form .input-box{
    width: 100%;
    margin-top: 20px;
}

.box-itens{
    display: flex;
    align-items: center;
    column-gap: 5px;
}
.input-box span{
    font-size: 24px;
}

.input-box label{
    color: #333;
    font-size: 1.2rem;

}

.form :where(input, .select-box) {
    position: relative;
    height: 50px;
    width: 100%;
    outline: none;
    font-size: 1rem;
    color: #353536;
    margin-top: 8px;
    border: 1px solid #0a0b2c;
    border-radius: 6px;
    padding: 0 15px;
}

.form .column1{
    display: flex;
    column-gap: 15px;
}

.select-box select{
    height: 100%;
    width: 100%;
    border-color: #fff;
    color: #353536;
    font-size: 1rem;
}

.select-box select:focus{
    outline: none;
}



/*Botões*/

.form .btns{
    display: flex;
    column-gap: 5px ;
}

.form .submitBTN{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 90%;
    color: #fff;
    font-size: 1rem;
    border: none;
    margin-top: 30px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 400;
    transition: all 0.2s ease;
    background-color: #091931;
}

.form .submitBTN:hover{
    background-color: #2967c4;
}

body .backBTN{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 10%;
    height: 55px;
    color: #fff;
    font-size: 1rem;
    border: none;
    margin-top: 30px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 400;
    transition: all 0.2s ease;
    background-color: #ffbc51;
}

.form .backBTN:hover{
    background-color: #2967c4;
}



@media screen and (max-width: 500px) {
    .form .column{
        flex-wrap: wrap;
    }
}