@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap);
html {
    background-color: transparent;
}
body {
    font-family: "Montserrat", Sans-serif;
    font-size: 1rem;
    font-weight: normal;
    margin: 0;
    padding: 0;
    background-color: transparent;
    /* background-image: url('../img/bgform.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    background-attachment: fixed; */
}
body, html {
    overflow: hidden;
}
input[type=text], input[type=password] {
    font-family: "Montserrat", Sans-serif;
    width: 100%;
    border: 0;
    border-radius: 14px 14px 14px 14px;
    padding: 10px;
    color: rgb(0, 0, 0);
    font-size: 1rem;
    box-sizing: border-box;
}
input[type=checkbox] {
    display: inline-block;
    transform: scale(1.3); 
    -webkit-transform: scale(1.3); 
    -moz-transform: scale(1.3); 
    -ms-transform: scale(1.3); 
    -o-transform: scale(1.3); 
    margin-right: 10px;
}

input[readonly=true] {
    opacity: 0.5;
}
input:focus {
    outline: none;
    border: none; /* opcional: remove a borda também */
    box-shadow: none; /* se quiser remover qualquer sombra */
}
.iti {
    width: 100%;;
}
.botao {
    font-family: "Montserrat", Sans-serif;
    width: 100%;
    background-color: #044d51;
    font-weight: 400;
    height: 2.7rem;
    padding: 0 1rem;
    border-radius: 17px;
    transition: background-color 0.2s ease 0s;
    border: none;
    white-space: nowrap;
    cursor: pointer;
    font-size: 1rem;
    color: #fff;
}
.botao:hover {
    background-color: #083280;
}
.container {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.container-form {
    width: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

label {
    line-height: 1.6em;
    color: #000;
}