/* sign-up.css */

:root {
  --brown: #4b2e2e;
  --cream: #fefaf7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  color: var(--brown);
}

body {
  background-color: var(--cream);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 350px;
  background: white;
  border: 1px solid #ddd;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.container h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: #4b2e2e;
}

.container p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.google-btn {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #555;
  padding: 10px;
  width: 100%;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 15px;
}

.google-btn:hover {
  background-color: #f3f3f3;
}

.or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: #999;
}

.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.or-divider:not(:empty)::before {
  margin-right: 10px;
}
.or-divider:not(:empty)::after {
  margin-left: 10px;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #2f1c11;
    cursor: pointer;
    background-color: transparent;
    box-shadow: none;
    border: none;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #f9f9f9;
}

button.signup {
  background-color: #4b2e2e;
  color: white;
  font-weight: bold;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 5px;
}

.signup-submit {
    background-color: var(--brown);
    color: var(--cream);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.signup-submit:hover {
  background-color: #3b2323;
}

button.signup:hover {
  background-color: #3b2323;
}

.terms {
  font-size: 11px;
  color: #777;
  margin-top: 15px;
}

.terms a {
  color: #4b2e2e;
  text-decoration: none;
  font-weight: bold;
}

.login-link {
  margin-top: 20px;
  font-size: 13px;
}

.terms strong {
  color: var(--brown);
  font-weight: bold;
}


.login-link a {
  color: #4b2e2e;
  text-decoration: none;
  font-weight: bold;
}
