@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background: url('../img/BG-LOGIN.jpg') no-repeat center center/cover;
    min-height: 100vh; /* Garante que o body ocupe a altura total da viewport */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    
}

.main{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.esquerda{
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: center;
    padding-left: 300px;
    padding-bottom: 300px;
}

.esquerda .img img{
    max-width: 250px;
    padding-bottom: 10px;
}

.esquerda h2 {
    font-size: 35px;
    color: white;
    font-weight: 400;
    padding-bottom: 15px;
}


.esquerda p {
    font-size: 15px;
    font-weight: 300;
    color: white;
}

.direita{
    display: flex;
    width: 55%;
    margin-top: 140px;
    justify-content: center;

}
.container{
    display: flex;
    width: 50%;
    padding: 30px;
    height: 85vh;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    background-color: #FFFFFF;
    flex-direction: column;
}
.textos{
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}
.textos h2 {
    font-size: 14px;
    font-weight: 300;
    color: 000000;  
    padding-bottom: 7px;

}

.textos p {
    font-size: 18px;
    font-weight: 400;
    color: 000000;

}

.linha{
    width: 18%;
    height: 7px;
    background: white;
    margin-bottom: 10px;
}

.form-dados {
    position: relative;
    margin-bottom: 20px;
}

.form-dados input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    padding-right: 50px; /* Espaço para o ícone de exibir senha */
    transition: all 0.3s ease;
}

.form-dados input:focus {
    border-color: #000;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.form-dados label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.form-dados .eye-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.botao {
    width: 100%;
    margin-top: 20px;
}

.botao button {
    width: 100%;
    padding: 15px;
    background-color: black;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.botao button:hover {
    background: linear-gradient(90deg, #00C09B 0%, #027D8F 100%); /* Degradê linear */

}

/* Estilização adicional */
.form-dados input::placeholder {
    color: #aaa;
}

.helpbutton {
    text-align: center;
    margin-top: 40px; /* Espaçamento entre o botão e o conteúdo anterior */
}

.helpbutton p {
    font-size: 14px;
    font-weight: 400;
    color: #333; /* Cor do texto padrão */
    margin-bottom: 1px; /* Espaço entre o parágrafo e o link */
}

.helpbutton a {
    font-size: 14px;
    font-weight: 600; /* Tornar o texto do link mais forte */
    text-decoration: none;
    color: #000000; /* Cor do link - preto */
    transition: color 0.3s ease; /* Transição suave de cor */
}

.helpbutton a:hover {
    color: #027D8F; /* Cor do link quando passar o mouse (um tom de azul) */
    text-decoration: underline; /* Adiciona sublinhado no hover */
}


/* Estilos para a notificação de erro */

.error-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #fc6076;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
    z-index: 1000;
    font-size: 16px;
}

.icon-circle {
    width: 30px;
    height: 30px;
    background-color: #fc6076;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.icon-circle i {
    color: white;
    font-size: 16px;
}



