/* /css/pages/login.css */
/* Page-level styles only. Global look/feel comes from magicstyle.css */

.login-card{
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,252,240,0.96);
  border-radius: 14px;
  border: 1px solid rgba(190,150,90,0.9);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25), 0 0 18px rgba(223,188,115,0.55);
  overflow: hidden;
}

.login-card-inner{
  padding: 1.4rem 1.4rem 1.6rem;
}

.login-title{
  margin: 0 0 .35rem;
  font-family: 'Cinzel', serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4b2c16;
}

.login-subcopy{
  margin: 0 0 1rem;
  color: #5c3921;
  font-family: 'Crimson Pro', serif;
  font-style: italic;
}

.login-alert{
  margin: 0 0 1rem;
  padding: .8rem .9rem;
  border-radius: 12px;
  background: rgba(171, 35, 60, 0.12);
  border: 1px solid rgba(171, 35, 60, 0.25);
  color: #7a1222;
  font-family: 'Crimson Pro', serif;
}

.login-form{
  display: grid;
  gap: .9rem;
}

.login-field label{
  display: block;
  margin: 0 0 .35rem;
  font-family: 'Cinzel', serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  color: #4b2c16;
}

.login-field input{
  width: 100%;
  padding: .75rem .85rem;
  border-radius: 12px;
  border: 1px solid rgba(190,150,90,0.75);
  background: rgba(255,255,255,0.85);
  font-family: 'Crimson Pro', serif;
  font-size: 1.02rem;
  color: #3c2210;
  outline: none;
}

.login-field input:focus{
  border-color: rgba(180,140,220,0.95);
  box-shadow: 0 0 0 3px rgba(180,140,220,0.22);
}

.login-btn{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(233,195,120,0.95);
  border-radius: 999px;
  padding: .85rem 1.05rem;
  background: linear-gradient(to bottom, #fbe4b3, #d8b36b);
  color: #3c2210;
  font-family: 'Cinzel', serif;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0,0,0,0.35), 0 0 14px rgba(224,188,115,0.65);
  transition: transform 120ms ease, box-shadow 120ms ease, background 160ms ease;
}

.login-btn:hover{
  transform: translateY(-1px);
  background: linear-gradient(to bottom, #ffeaba, #deb873);
  box-shadow: 0 14px 30px rgba(0,0,0,0.45), 0 0 18px rgba(255,228,145,0.9);
}

.login-links{
  margin-top: .4rem;
  text-align: center;
  font-family: 'Crimson Pro', serif;
}

.login-links a{
  color: #4b2c16;
  text-decoration: none;
  border-bottom: 1px dotted rgba(75,44,22,0.45);
}

.login-links a:hover{
  border-bottom-color: rgba(75,44,22,0.85);
}

.login-links .dot{
  display: inline-block;
  margin: 0 .45rem;
  opacity: .65;
}
