* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}
button{cursor: pointer;}
a{text-decoration: none;}
/*HEADER*/

header {
    background-color: blue;
    height: 100px;
    width: 100%;
}

#containerHeader {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
}

#home {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    width: 100px;
    background-color: #ff5e00;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

/*FORM*/

#containerForm {
    margin-top: 300px;
    width: 100%;
    margin: 100px auto;
    display: flex;
    justify-content: center;
}

#loginForm {
    background-color: rgba(255, 255, 255, 0.911);
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    width: 400px;
    height: 590px;
    padding: 20px;
}

#loginForm label {
    font-size: 16px;
    font-weight: 400;
}

#loginForm input,select {
    height: 38px;
    font-size: 15px;
    border-radius: 5px;
    border: none;
    background-color: rgba(128, 128, 128, 0.137);
    font-family: "Poppins", sans-serif;
}

#loginForm input{
    padding: 4px;
}


#loginForm button {
    cursor: pointer;
    background-color: #ff5e00;
    font-family: "Poppins", sans-serif;
    width: 100%;
    height: 40px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 5px;
    border-radius: 8px;
    color: white;
    border: none;
}

#loginForm h1 {
    text-align: center;
    color: #0000ff;
}

.cntForm {
    display: flex;
    flex-direction: column;
    margin-top: 8px;
}

#cntCadastro {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 35px;
}


/*FOOTER*/

footer {
    background-color: #0000ff;
    display: flex;
    flex-direction: column;
}

footer a {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    margin-top: 5px;
}

footer a img {
    margin-right: 8px;
}

footer ul {
    list-style: none;
}

#cntFooter1 {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#cntFooter2 {
    width: 100%;
    font-size: 13px;
    color: white;
    text-align: center;
}

#contatos {
    color: white;
}

#contatos h1 {
    font-size: 20px;
    text-align: center;
}

.password-container {
    position: relative;
    width: 100%;
}
.password-container input {
    padding-right: 40px; /* Space for the eye icon */
    width: 100%;
}
.password-container .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
}

#mensagem_sucesso {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffffb2;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

#mensagem_sucesso button {
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    width: 80px;
    background-color: #ff5e00;
    color: white;
    border-radius: 5px;
    font-size: 15px;
}

#mensagem_erro {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffffb2;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

#mensagem_erro button {
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    width: 80px;
    background-color: #ff5e00;
    color: white;
    border-radius: 5px;
    font-size: 15px;
}
#voltarButton {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    width: 110px;
    background-color: white;
    color: #ff5e00;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
#finalizarSessao {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    width: 100px;
    background-color: #ff5e00;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

@media (max-width: 440px) {
    #loginForm{
        width: 350px;
        height: 590px;
    }

    #cntFooter1{
        flex-direction: column;
        height: 270px;
        align-items: center;
    }
}


@media (max-width: 410px) {
    #loginForm{
        width: 320px;
    }
}