/* === Login Page === */

* { box-sizing: border-box; }

body {
  background: linear-gradient(135deg, #F5D56E 0%, #F1BB36 100%);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: 'Red Hat Display', sans-serif;
}

#logoheader {
  height: 100px;
}

.header {
  text-align: center;
  height: 100px;
  background-color: #f8f9f6;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.booking-logo {
  border: 2px solid rgba(0,0,0,0.8);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
}

h1, h2 {
  text-align: center;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

h2 {
  padding-bottom: 16px;
}

.body-content {
  background: #fff;
  padding: 36px 32px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 380px;
  text-align: center;
}

label {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  text-align: left;
  font-size: 14px;
  color: #333;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  margin: 8px 0 4px;
  border-radius: 6px;
  border: 1px solid #d0d0d0;
  font-size: 15px;
  font-family: 'Red Hat Display', sans-serif;
  transition: border-color 0.2s ease;
}

input[type="text"]:focus,
input[type="password"]:focus {
  outline: none;
  border-color: #F1BB36;
  box-shadow: 0 0 0 3px rgba(241,187,54,0.15);
}

button {
  background-color: #1a1a1a;
  color: white;
  border: none;
  padding: 11px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  font-family: 'Red Hat Display', sans-serif;
  transition: background-color 0.2s ease, transform 0.1s ease;
  width: 100%;
  margin-top: 16px;
}

button:hover {
  background-color: #333;
}

button:active {
  transform: scale(0.98);
}

#forgot-password {
  display: inline-block;
  padding-top: 16px;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

#forgot-password:hover {
  color: #1a1a1a;
}

.error-message {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  padding: 8px 12px;
  margin-top: 12px;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 979px) {
  .booking-logo {
    width: 90px;
    height: 90px;
    padding: 0;
  }
  .booking-logo p {
    padding: 0;
    margin: 0;
    font-size: 10px;
  }
}

@media (max-width: 700px) {
  .header {
    height: 60px;
  }
  #logoheader {
    height: 50px;
  }
  .header .booking-logo {
    display: none;
  }
  .body-content {
    margin: 0 16px;
  }
}
