
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'poppins',sans-serif;
}
.section{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    
    background: url('../images/painel2.jpg');
    background-position: center;
    background-size: cover;
}
.header {
    height: 80px;
    max-height: 8vh;
    background-color: #000;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-cont {
    width: 90vw;
    max-width: 1080px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 600px) {

    .header-cont {
        width: 94vw;
    }

}

.form-boxregister{
    position: relative;
    width: 400px;
    background: transparent;
    border: 6px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    backdrop-filter: blur(35px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.form-value {
    margin-bottom: 30px;
}
h1{
    font-size: 2em;
    color: #fff;
    text-align: center;
    padding-top: 15px;
}
.inputbox{
    position: relative;
    margin: 30px 0;
    width: 310px;
    border-bottom: 2px solid #fff;
}
.inputbox label{
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 1em;
    pointer-events: none;
    transition: .5s;
}
input:focus ~ label,
input:valid ~ label{
top: -5px;
}
.inputbox input {
    width: 100%;
    height: 60px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    padding:0 35px 0 5px;
    color: #fff;
}
.inputbox ion-icon{
    position: absolute;
    right: 8px;
    color: #fff;
    font-size: 1.2em;
    top: 20px;
}
.forget{
    margin: -10px 0 15px ;
    font-size: .9em;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.forget label input{
    margin-right: 5px;
    
}
.forget label a{
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.forget label a:hover{
    text-decoration: underline;
}
.buttonregister{
    width: 100%;
    height: 40px;
    border-radius: 40px;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    color: #000000;
    text-align: center;
    padding: unset;
    margin-top: 15px;
}
.register{
    font-size: .9em;
    color: #fff;
    text-align: center;
    margin: 25px 0 10px;
}
.register p a{
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}
.register p{
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    padding-top: 5px;
}
.register p a:hover{
    text-decoration: underline;
}

.foretpassword{
    padding-left: 80px;
}
.termoslogin{
    font-size: .9em;
    color: #fff;
    text-align: center;
    margin: 15px 0 10px;
}
.termoslogin p a{
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}
.termoslogin p{
    text-decoration: none;
    color: #fff;
    font-weight: 400;
}
.termoslogin p a:hover{
    text-decoration: underline;
}
.termoslogin input{
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.boxaccept{
    display: flex;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
}
.subtitleregister{
    font-size: 20px;
    text-align: center;
    padding-top: 20px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

input[type="date"]::-webkit-inner-spin-button {
    display: none;
    -webkit-appearance: none;
}

input[type="gender"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

input[type="gender"]::-webkit-inner-spin-button {
    display: none;
    -webkit-appearance: none;

}
 
option{
    background-color: #2C2F30;
}

.checkbox-container {
    display: flex;
    justify-content: center; 
    gap: 10px;
}

#acceptTerms {
    width: 20px;
    height: 20px;
}
.link-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}