
:root {
  --bg: #f7f2ea;
  --card: #fffdf9;

  --blue: #bfd9e7;
  --green: #cdddc4;

  --text: #4f4a45;

  --shadow: rgba(0, 0, 0, 0.06);
}

body {
  margin: 0;
  padding: 0;

  background: var(--bg);
  color: var(--text);

  font-family: "Quicksand", sans-serif;
}

.page {
  max-width: 880px;
  margin: auto;

  padding: 40px;
}

.login-link {
  color: #6b8fb3;
  text-decoration: underline;
}

.muted {
  color: #999;
  font-size: 14px;
}


/* AUTH PAGE BACKGROUND */
.auth-page {
  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 100vh;

  background: var(--bg);
}

/* AUTH CARD */
.auth-card {
  width: 100%;
  max-width: 380px;

  background: var(--card);

  padding: 35px;

  border-radius: 18px;

  box-shadow: 0 12px 30px var(--shadow);

  border: 1px solid rgba(0,0,0,0.05);

  text-align: center;
}

/* TITLE */
.auth-title {
  font-size: 28px;
  font-weight: 400;

  margin-bottom: 25px;

  color: var(--text);
}

/* FORM */
.auth-form {
  display: flex;
  flex-direction: column;

  gap: 12px;
}

/* INPUTS */
.auth-form input {
  padding: 12px;

  border-radius: 12px;

  border: 1px solid #e6dccb;

  background: #fffdf8;

  font-family: inherit;

  outline: none;
}

/* BUTTON */
.auth-form button {
  padding: 12px;

  border: none;

  border-radius: 12px;

  background: var(--green);

  color: var(--text);

  cursor: pointer;

  font-weight: 500;

  transition: 0.2s ease;
}

.auth-form button:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

/* LINKS */
.auth-link {
  display: inline-block;

  margin-top: 15px;

  font-size: 14px;

  color: #6b8fb3;

  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}