/* styles.css */

h2 {     margin-bottom: -13px;
}
h3 {     margin-bottom: -13px;
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.bg-image {
    background-image: url('image1.jpeg'); /* Substitua pela sua imagem de fundo */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation: changeBg 15s infinite;
    height: 100vh;
}

@keyframes changeBg {
    0%, 100% { background-image: url('image1.jpg'); }
    33% { background-image: url('image2.jpg'); }
    66% { background-image: url('image3.jpg'); }
}

.login-container {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.83); /* Fundo semi-transparente */
    padding: 25px; /* Ajuste do padding */
    border-radius: 40px; /* Raio da borda do contêiner */
    box-shadow: 10px 10px 10px rgba(255, 255, 255, 0.2), 0px 0px 40px rgba(255, 255, 255, 0.5); /* Brilho externo branco */
    width: 300px; /* Tamanho do contêiner do formulário */
    margin: 0 auto; /* Centralizar horizontalmente */
}

.login-container img {
    max-width: 100%;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

form {
    margin-top: 20px;
}

input[type="email"],
input[type="text"] {
    width: 220px; /* Largura do campo de texto */
    height: 18px; /* Altura do campo de texto */
    border-radius: 31px; /* Raio da borda do campo */
    padding: 15px;
    margin: 10px;
    border: 2px solid #464646; /* Cor da borda */
    background-color: white; /* Cor de fundo */
    color: #333;
    margin-bottom: 20px;
}

input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #007bff;
}

.error-message {
    color: red;
    display: none; /* Inicialmente, as mensagens de erro estão ocultas */
    margin-top: -10px;
    margin-bottom: 10px;
}

.slide-container {

    width: 220px;
    height: 18px;
    border-radius: 31px;
    padding: 15px;
    margin: 10px;
    border: 2px solid #464646;
    background-color: white;
    color: #333;
    margin-bottom: 20px;
    margin-left: 25px;
    
    
}

select {
    flex: 1;
    border: none;
    background-color: transparent;
    font-size: inherit;
    cursor: pointer;
    outline: none;
}

button {
    background-color: #007bff;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    width: 260px; /* Largura do botão */
    height: 55px; /* Altura do botão */
    transition: background-color 0.3s;
    font-size: 18px; /* Tamanho do texto */
}

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