/* Quicksand 400 */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  src: url('assets/fonts/quicksand/quicksand-v37-latin-regular.woff2') format('woff2');
  font-display: swap;
}
/* Quicksand 600 */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 600;
  src: url('assets/fonts/quicksand/quicksand-v37-latin-600.woff2') format('woff2');
  font-display: swap;
}
/* Pacifico */
@font-face {
  font-family: 'Pacifico';
  font-style: normal;
  font-weight: 400;
  src: url('assets/fonts/pacifico/pacifico-v23-latin-regular.woff2') format('woff2');
  font-display: swap;
}
body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(160deg, #f8ede3, #fcd5ce);
    color: #4a3c3a;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 0rem 1rem;
}
.card {
    background: #fffaf7;
    border-radius: 1.5rem;
    padding: 2rem 3rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 500px;
}
h1 {
    font-family: 'Pacifico', cursive;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}
p {
    font-size: 1.1rem;
    margin: 0.5rem 0 1.5rem;
}
.email-box {
    display: flex;
    margin-top: 1.5rem;
    border: 1px solid #e1c6b3;
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}
input[type="email"] {
    border: none;
    padding: 0.8rem 1rem;
    flex: 1;
    font-family: inherit;
    outline: none;
}
button {
    background: #956062;
    border: none;
    color: white;
    padding: 0 1.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}
button:hover {
    background: #b5838d;
}
.footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #7a6f6b;
}
.privacy {
    font-size: 0.75rem;
    color: #7a6f6b;
    margin-top: 0.5rem;
}
.privacy a {
    color: #7a6f6b;
    text-decoration: underline;
}
