*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Josefin Sans', sans-serif;
  background: #f2f5f4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  letter-spacing: .2px;
}
.login-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(22,75,68,.13);
  padding: 2.5rem 2.25rem;
  width: 100%;
  max-width: 400px;
  border-top: 4px solid #e7ad25;
}
.logo {
  text-align: center;
  margin-bottom: 2rem;
}
.logo img { height: 48px; width: auto; }
.logo p {
  font-size: .8rem;
  color: #6b8a86;
  margin-top: .6rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-weight: 600;
}
.form-group { margin-bottom: 1.1rem; }
label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: #6b8a86;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .35rem;
}
input[type=email], input[type=password] {
  width: 100%;
  padding: .65rem .9rem;
  border: 1px solid #ccd8d6;
  border-radius: 8px;
  font-size: .95rem;
  font-family: 'Josefin Sans', sans-serif;
  color: #1a2e2c;
  transition: border-color .2s, box-shadow .2s;
}
input:focus {
  outline: none;
  border-color: #164b44;
  box-shadow: 0 0 0 3px rgba(22,75,68,.12);
}
.btn-login {
  width: 100%;
  padding: .8rem;
  background: #164b44;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: .9rem;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: .75rem;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(22,75,68,.25);
}
.btn-login:hover { background: #1e6b61; }
.alert {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 8px;
  padding: .7rem .9rem;
  margin-bottom: 1rem;
  font-size: .875rem;
}
.alert-success {
  background: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}
.link-subtle {
  font-size: .8rem;
  color: #6b8a86;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .3px;
}
.link-subtle:hover { color: #164b44; text-decoration: underline; }
