:root {
  --roxo-escuro: #2d033b;
  --roxo-claro: #810ca8;
  --lavanda: #c147e9;
  --branco: #ffffff;
}*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*body {
  background: linear-gradient(to bottom, var(--roxo-escuro), var(--roxo-claro));
  color: var(--branco);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
    
}*/

/* Cabeçalhos */
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* Estilo do vídeo na index */
.video-container {
  position: relative;
  width: 90%;
  max-width: 900px;
  margin: 0 auto 2rem;
  padding-bottom: 56.25%; /* Proporção 16:9 */
  height: 0;
}

.iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}


/* Botão padrão */
.btn-login, button[type=\"submit\"] {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  background-color: var(--lavanda);
  border: none;
  border-radius: 30px;
  color: var(--branco);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-login:hover, button[type=\"submit\"]:hover {
  background-color: #a729c5;
}

/* Estilo do formulário de login */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
  
}

input[type=\"text\"],
input[type=\"email\"] {
  width: 100%;
  padding: 0.7rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
}
