/* Importar a fonte Chango do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Chango:wght@400&display=swap');

/* Reset de margens e preenchimentos e box-sizing para todos os elementos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilos para o header */
header {
  background-color: black;
  display: flex;
  justify-content: flex-start;
  padding: 20px;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo h2 {
  font-size: 36px;
  color: white;
  margin-left: 20px;
  font-family: 'Chango', sans-serif;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.6);
}

.logo img {
  width: 100px;
  height: 100px;
}

/* Estilos gerais para o fundo e corpo */
body {
  background-color: #f3ead7;
  font-family: 'Chango', sans-serif;
}

/* Área principal de login */
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 200px);
}

.login-icon {
  text-align: center;
  margin-bottom: 40px;
}

.login-icon img {
  width: 150px;
  height: 150px;
}

.login-box {
  text-align: center;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: black;
}

.input-box {
  margin-bottom: 20px;
  text-align: left;
}

.input-box label {
  color: #000000;
  opacity: 1;
  font-weight: bold;
}

.input-box input {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  color: #fff;
  background-color: #000;
  border: 2px solid #000;
  border-radius: 5px;
  text-align: center;
}

button {
  background-color: black;
  color: white;
  font-size: 16px;
  border: none;
  padding: 10px;
  cursor: pointer;
  width: 100%;
  max-width: 250px;
  border-radius: 20px;
  margin-top: 10px;
  font-family: 'Chango', sans-serif;
}

button:hover {
  background-color: #444;
}

footer {
  background-color: black;
  position: relative;
  padding: 20px 0;
  color: white;
  text-align: center;
  font-family: 'Chango', sans-serif;
  z-index: 1;
}

footer::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: radial-gradient(circle at 50% 0%, transparent 20px, black 21px);
  background-size: 40px 80px;
  z-index: 0;
}

footer .info {
  position: relative;
  z-index: 1;
}


/* Estilo normal do link */
h2 a {
    text-decoration: none;
    color: white;
    font-family: 'Chango', sans-serif;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  /* Estilo ao passar o mouse */
  h2 a:hover {
    color: #D2B48C; /* Altera a cor para dourado */
    transform: scale(1.1); /* Aumenta o tamanho do texto em 10% */
  }