/* Fundo geral e centralização do card */
body {
    background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 40%),
    linear-gradient(135deg,#2f3e73,#4c5bbd);
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  
}

/* Wrapper do card */
.container {
  width: 100%;
  max-width: 480px;
  padding: 16px;
}

/* Card de login */
.login-box {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 28px 32px 24px;
  text-align: center;
}

/* Logo dentro do card */
.logo {
 width:120px;
  margin-bottom:20px;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.25));
  border-radius: 12px;
}

/* Títulos e textos */
h1 {
  color: #213261;
  font-size: 26px;
  margin: 0 0 8px;
  font-weight:700;
}

.subtitle {
  color: #4a5575;
  font-size: 14px;
  margin: 0 0 20px;
  opacity: 0.9;
}

.security-text {
  margin-top: 18px;
  font-size: 11px;
  color: #9aa3b5;
}

.origem {
 bottom: 0;
 position: fixed;
 text-align: center;
 color: #fff;
 font-size: 12px;
}


/* Botão "Entrar com Microsoft" */
.ms-login {
  background:#3a41a6;
  border:none;
  border-radius:30px;
  padding:16px 30px;
  font-size:16px;
  font-weight:600;
  color:white;
  cursor: pointer;
 }

.ms-login:hover {
  background: #20209e;
}

.ms-login:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}
