@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Inter:wght@300;400&display=swap');

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: #F2E4D4;
    color: #7A5A2E;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 550px;
    padding: 40px;
}

.logo {
    width: 200px;
    margin-bottom: 30px;
}

h1 {
    font-family: "Lucida Bright", serif;
    font-size: 48px; color:#29634D;
    margin: 10px 0;
}
h2 {
    font-family: "Lucida Bright", serif;
    font-size: 26px;color:#29634D;
    margin: 10px 0;
}
p {
    font-size: 18px;
    margin-bottom: 30px; color:#A77F3D;
}

.button-group {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
}

.primary {
    background-color: #7A5A2E;
    color: white;
    border: none;
}

.primary:hover {
    background-color: #5e4421;
}

.secondary {
    border: 1px solid #7A5A2E;
    color: #7A5A2E;
    background: transparent;
}

.secondary:hover {
    background-color: #7A5A2E;
    color: white;
}

.email-form {
    margin-top: 25px;
}

.email-form input {
    padding: 12px 15px;
    width: 65%;
    border-radius: 6px;
    border: 1px solid #d1c1a4;
    outline: none;
    font-size: 16px;
}

.email-form button {
    padding: 12px 20px;
    background-color: #7A5A2E;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 10px;
    font-size: 16px;
}

.email-form button:hover {
    background-color: #5e4421;
}
