*{box-sizing:border-box}
:root{
  --green:#00553f;
  --green2:#007052;
  --orange:#f26a00;
  --light:#f4f8f6;
  --text:#07162f;
  --muted:#64706b;
  --line:#dbe5df;
}
body{
  margin:0;
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:24px;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    linear-gradient(rgba(0,65,48,.82),rgba(0,65,48,.9)),
    url("../assets/hero-blumenau.jpg") center/cover no-repeat;
}
.login-card{
  width:min(440px,100%);
  background:#fff;
  border-radius:20px;
  padding:36px;
  box-shadow:0 24px 70px rgba(0,0,0,.25);
}
.login-brand{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:28px;
}
.login-brand img{
  width:58px;
  height:70px;
  object-fit:contain;
}
.login-brand strong{
  display:block;
  font-size:18px;
  line-height:1.15;
  text-transform:uppercase;
  color:#071e51;
}
.login-brand span{
  display:block;
  margin-top:4px;
  color:var(--green);
  font-weight:800;
}
.eyebrow{
  margin:0 0 8px;
  color:var(--green);
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
h1{
  margin:0;
  font-size:30px;
}
.subtitle{
  margin:10px 0 26px;
  color:var(--muted);
  line-height:1.45;
}
label{
  display:block;
  margin:0 0 7px;
  font-size:14px;
  font-weight:800;
}
input{
  width:100%;
  height:48px;
  border:1px solid var(--line);
  border-radius:10px;
  padding:0 13px;
  margin-bottom:18px;
  font:inherit;
}
input:focus{
  outline:3px solid rgba(0,112,82,.14);
  border-color:var(--green2);
}
button{
  width:100%;
  height:50px;
  border:0;
  border-radius:10px;
  background:linear-gradient(135deg,#007a58,#004c39);
  color:#fff;
  font:inherit;
  font-weight:900;
  text-transform:uppercase;
  cursor:pointer;
}
button:disabled{opacity:.7;cursor:wait}
.login-message{
  min-height:20px;
  margin:14px 0 0;
  color:#b42318;
  text-align:center;
  font-size:14px;
  font-weight:700;
}
.back-link{
  display:block;
  margin-top:22px;
  text-align:center;
  color:var(--green);
  font-size:13px;
  font-weight:800;
  text-decoration:none;
}
@media(max-width:520px){
  .login-card{padding:28px 22px}
  h1{font-size:26px}
}
