/* Base styling */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #e6dbc7; /* beige tone */
    color: #3b3a36; /* dark brown charcoal */
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* Heading */
h2 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Dancing Script', cursive;
    font-size: 3.4em;
    color: #3b3a36;
}

/* Logo */
img.logo {
    display: block;
    margin: 0 auto 20px;
    width: 50%;
    max-width: 30%;
    border-radius: 50%;
    border: 3px solid #b49056;
}

/* Form container */
#form-wrapper {
    width: 95%;
    max-width: 95%;
    margin: 0 auto;
    background-color: #f5f1e6;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(59, 58, 54, 0.2);
    border: 1px solid #b49056;
    box-sizing: border-box;
}

/* Form labels */
label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #3b3a36;
    font-size: 1.8em;
}

/* Text and email inputs */
input[type="text"],
input[type="email"] {
    width: 95%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #b49056;
    border-radius: 10px;
    background-color: #fff;
    font-size: 1em;
}

/* Signature canvas */
#signature-container {
    position: relative;
    width: 95%;
}

#signature {
    border: 2px dashed #b49056;
    background: #ffffff;
    height: 200px;
    border-radius: 10px;
}

.sig-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.sig-buttons button {
    background-color: #b49056;
    color: #ffffff;
    padding: 14px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.8rem;
    transition: background-color 0.3s;
}

/* Button */
button {
    background-color: #b49056;
    color: #ffffff;
    padding: 14px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.8rem;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #8c6d3e;
}

/* Table */
table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
    background-color: #f5f1e6;
    font-size: 1em;
}

th,
td {
    border: 1px solid #b49056;
    padding: 12px;
    text-align: center;
    color: #3b3a36;
}

th {
    background-color: #e6dbc7;
    font-weight: 600;
}

/* Filter input */
#filter {
    padding: 14px;
    width: 95%;
    border-radius: 10px;
    border: 1px solid #b49056;
    background-color: #fff8f0;
    color: #3b3a36;
    font-size: 1em;
    box-sizing: border-box;
    margin: 0 auto 20px auto;
    display: block;
}

.terms, .marketing {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 1.8em;
}

.terms input[type="checkbox"], .marketing input[type="checkbox"] {
    width: auto;
}

/* Responsive tweaks for mobile */
@media screen and (max-width: 600px) {
    body {
        padding: 10px;
    }

    #form-wrapper {
        padding: 20px;
    }
}
