body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  background-image:url("img (1)/ofccfundo\ \ \(1\).png");
  background-attachment: fixed;
  background-size: 100%;
  height: 1000px;
}

.card {
  background: rgb(69, 94, 175); 
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 100px 45px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  width: 380px;
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 20px;
}

h1 {
  margin-bottom: 25px;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  font-size: 50px;
  padding-bottom: 50px;

}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* ======== CAMPOS DE ENTRADA ======== */
input {
  width: 100%;
  padding: 15px 15px;
  margin: 18px 0;
  border: none;
  border-radius: 15px;
  background: rgba(233, 232, 232, 0.9);
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

input:focus {
  background: rgb(255, 254, 254);
  box-shadow: 0 0 5px #21b3e0;
}


button {
  width: 100%;
  padding: 12px 15px;
  margin-top: 20px;
  border: none;
  border-radius: 40px;
  background: rgb(109, 174, 228);
  color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

button:hover {
  background: rgba(7, 22, 87, 0.616);
  transform: scale(1.02);
}

h {
  font-size: 14px;
  margin-top: 20px;
  color: #fff;
}

a {
  color:  rgb(109, 174, 228);
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

a:hover {
  text-decoration: underline;
  color: rgb(6, 25, 107);
}

#mensagem {
  margin-top: 15px;
  font-weight: bold;
  color: #fff;
}