body {
    font-family: Arial, sans-serif;
    background: linear-gradient(45deg, #EB6092, #6169BE);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 15px;
    margin: 0;
    overflow: hidden; /* Desativa a rolagem */
    touch-action: none; /* Impede zoom com gestos de pinça */
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.form-container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}


/* Evita o zoom no campo de entrada ao focar */
input,
textarea,
select {
    -webkit-text-size-adjust: 100%; /* Impede o aumento do texto no foco */
}

form {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px 25px;
    width: 300px;
    text-align: center;
}

.form2 {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 30px 25px;
    width: 300px;
    text-align: center;
}

.button-login2 {
    font-size: 24px;
    text-decoration: underline;
}


.form-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.form-title2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #333;
}


p {
    margin: 0 0 15px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    margin: 0;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder {
    color: #888;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.password-container {
    position: relative;
}

.password-container input {
    padding-right: 30px; /* Deixe espaço para o ícone */
}

.password-container i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Estilo para mensagens de erro */
.error-message {
    color: #d9534f;
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 15px;
    display: none; /* Inicialmente oculto */
}

a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
