* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #04342C;
  background-image: linear-gradient(135deg, #04342C 0%, #0F6E56 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.wrap { width: 100%; max-width: 420px; }

.card {
  background: #F6F2E9;
  border-radius: 14px;
  padding: 40px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border-top: 3px solid #B08030;
}

.brand { text-align: center; margin-bottom: 28px; }

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  background: #04342C;
  border-radius: 50%;
  margin-bottom: 14px;
}

.brand h1 {
  font-size: 22px;
  color: #04342C;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tag {
  font-size: 13px;
  color: #5F5E5A;
  margin-top: 4px;
}

.sub {
  font-size: 10px;
  color: #B08030;
  letter-spacing: 1.2px;
  margin-top: 10px;
  text-transform: uppercase;
}

form label {
  display: block;
  font-size: 11px;
  color: #5F5E5A;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 16px 0 6px;
  font-weight: 500;
}

form input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #D3D1C7;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  color: #04342C;
  transition: border-color 0.2s;
}

form input:focus {
  outline: none;
  border-color: #0F6E56;
  box-shadow: 0 0 0 3px rgba(15, 110, 86, 0.1);
}

button[type="submit"] {
  width: 100%;
  margin-top: 24px;
  padding: 12px;
  background: #04342C;
  color: #B08030;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: background 0.2s;
}

button[type="submit"]:hover {
  background: #0F6E56;
  color: #D4A24C;
}

.error {
  background: #FCEBEB;
  color: #A32D2D;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 8px;
  border-left: 3px solid #E24B4A;
}

.footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #E5E1D5;
  font-size: 10px;
  color: #888780;
  letter-spacing: 0.5px;
}
