
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(90deg, #a9acac 0%, #93d5e0 100%);
  color: #222;
  min-height: 100vh;
}


.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  min-height: 100vh;
}


.auth-card {
  width: 100%;
  max-width: 460px;
  background: rgba(255,255,255,0.92);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(10, 30, 40, 0.15);
  overflow: hidden;
}


.auth-header {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(10,30,40,0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.brand {
  font-weight: 700;
  color: #0a2e36;
  font-size: 18px;
}

.auth-body {
  padding: 26px 30px 34px;
  text-align: left;
}

.auth-body h1 {
  margin-bottom: 6px;
  font-size: 24px;
  color: #0a2e36;
}

.muted {
  margin-bottom: 16px;
  color: #466;
  font-size: 14px;
  opacity: 0.9;
}


.auth-form {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.field {
  display: block;
}

.label-text {
  display: block;
  font-size: 13px;
  color: #334;
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d5d5d5;
  background: #fff;
  font-size: 15px;
  outline: none;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

input:focus,
textarea:focus {
  border-color: #00796b;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}


.btn {
  display: inline-block;
  padding: 12px 14px;
  border-radius: 10px;
  border: 0;
  font-size: 15px;
  cursor: pointer;
}

.btn.primary {
  width: 100%;
  background: linear-gradient(180deg,#00806b,#006a57);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  transition: transform .12s ease, filter .12s ease;
}

.btn.primary:hover { transform: translateY(-3px); filter: brightness(.98); }


.small {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}

.small a {
  color: #00796b;
  font-weight: 700;
  text-decoration: none;
}

.small a:hover { text-decoration: underline; }


@media (max-width: 520px) {
  .auth-card { max-width: 92%; }
  .auth-body { padding: 20px; }
  .auth-header { padding: 14px; }
  .brand { font-size: 16px; }
}
