/* styles.css */

/* Estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  
  h1 {
    margin-bottom: 1.5rem;
    font-size: 24px;
    color: #333;
  }
  
  .input-group {
    margin-bottom: 1.2rem;
    text-align: left;
  }
  
  label {
    font-size: 14px;
    color: #333;
    margin-bottom: 0.3rem;
    display: block;
  }
  
  input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
  }
  
  .login-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 0.8rem;
    font-size: 16px;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
  }
  
  .login-btn:hover {
    background-color: #555;
  }
  
  .links {
    margin-top: 1.5rem;
  }
  
  .links p {
    margin-bottom: 0.5rem;
  }
  
  .links a {
    color: #007BFF;
    text-decoration: none;
    font-size: 14px;
  }
  
  .links a:hover {
    text-decoration: underline;
  }
  

  .login-btn {
    transition: background-color 0.3s;
}
.login-btn:hover {
    background-color: green; /* Muda a cor ao passar o mouse */
}
.login-btn:active {
    background-color: darkgreen; /* Muda a cor ao clicar */
}
  

  

.carousel-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Coloca o carrossel atrás do conteúdo */
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

.login-container {
  background-color: rgba(255, 255, 255, 0.9); /* Fundo branco semi-transparente */
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1; /* Coloca o formulário na frente do carrossel */
}

