/* Importando a fonte Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;

}

.main{
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.esquerda {
    background: url('../img/Quadro do login.png') no-repeat center center/cover;
    width: 50%;
}


.direita{
    width: 50%;
    display: flex;
    justify-content: center;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    width: 60%;
}

.juntar{
    display: flex;
    justify-content: space-between;
    gap: 0px;
    margin: 0;
    padding: 0;
}

.headline {
    font-size: 30px;
    font-weight: 700;
    color: #092654; /* Cor inicial */
    margin: 0;
    padding: 0;
    text-align: center;
}

.headline span {
    color: #17886B; /* Cor específica para o texto "Coração do Nosso Sucesso!" */
}

.login p {
    font-size: 14px;
    font-family: 400;
    color: #353333;
    text-align: center;

}

/* Campos do formulário */
.form-dados {
    margin-bottom: 20px;
}

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

.form-dados input {
    width: 100%;
    padding: 10px 0px;
    font-size: 14px;
    border: none; 
    border-bottom: 1px solid #BDBDBD; 
    background: none;
    outline: none;
    margin-bottom: 5px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: #212121;

    transition: all 0.3s ease;
}

.form-dados input::placeholder {
    color: #aaa;
    font-size: 12px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    padding-left: 2px;

}

.form-dados input:focus {
    border-color: #17886B;
}

/* Botão */
.botao{
    display: flex;
    justify-content: center;
    align-content: center;
}

.botao button {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background-color: #17886B;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.botao button:hover {
    background-color: #092654;
    transform: translateY(-3px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.botao button:active {
    transform: translateY(0);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

/* 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;
}