@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

/* ---------- GERAL ---------- */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(
      rgba(88, 22, 125, 0.7), 
      rgba(0, 0, 0, 0.6)
    ),
    url('../imagens/fundo.webp') center/auto no-repeat;
  backdrop-filter: blur(4px);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- CONTAINER ---------- */
.container-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px;
  z-index: 10;
  position: relative;
}

/* ---------- BOX ---------- */
.box {
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  color: #fff;
  text-align: center;
  padding: 40px 30px;
  animation: fadeIn 0.8s ease;
}

/* ---------- FORM ---------- */
.form-signin {
  max-width: 330px;
  margin: 0 auto;
}

.form-signin input[type="email"],
.form-signin input[type="password"] {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 8px;
  padding: 12px;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 15px;
}

.form-signin input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #58167d;
}

/* ---------- BOTÃO ---------- */
.btn-orange {
  width: 100%;
  color: #fff;
  background-color: #58167d;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background-color: #fff;
  color: #58167d;
  box-shadow: 0 0 10px rgba(88, 22, 125, 0.5);
}

/* ---------- LINKS ---------- */
a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #d1b2e8;
}

/* ---------- ANIMAÇÃO ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
