/* CHS Forms Shared Styles */
body {
    font-family: "Montserrat", sans-serif;
    background: #323232;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("background.png") center/cover no-repeat;
    opacity: .1;
    pointer-events: none;
    z-index: -1;
}

.form-wrapper {
    max-width: 960px;
    background: #fff;
    margin: 2rem auto;
    padding: 2rem 2.5rem;
    border-radius: .75rem;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

label.required:after {
    content: "*";
    color: #c00;
    margin-left: 2px;
}

.section-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.dropbox {
    position: relative;
    border: 2px dashed #bbb;
    border-radius: .5rem;
    padding: 2rem 1rem;
    text-align: center;
    color: #666;
    transition: border-color .2s ease;
}

.dropbox.dragover {
    border-color: #0d6efd;
    color: #0d6efd;
}

.dropbox input[type=file] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Legacy styles for backwards compatibility */
.form-wrap {
    background-color: #fff;
    border-radius: 24px;
    padding: 40px;
    width: 700px;
    max-width: 95%;
}

h1 {
    font-weight: 800;
    font-size: 16px;
}

p,
label {
    font-size: 14px;
    color: #323232;
}

.label-bold {
    font-weight: 800;
    font-size: 18px;
    color: #323232;
}

form {
    margin-top: 30px;
    padding: 0;
}

@media (min-width: 768px) {
    form {
        margin-top: 60px;
        padding: 0 50px;
    }
}

input[type="text"],
textarea {
    border: 2px solid #7D7D7D;
    border-radius: 10px;
    width: 100%;
    font-size: 14px;
    padding: 10px 20px;
}

input[type="text"]:focus,
input[type="text"]:focus-visible,
textarea:focus,
textarea:focus-visible {
    outline-color: #EB5E66;
}

.select {
    border-color: #7D7D7D;
    border-width: 2px;
    border-radius: 10px;
    width: 100%;
    font-size: 14px;
    padding: 10px 20px;
}

.select:focus {
    box-shadow: none;
    border-color: #EB5E66;
}

button[type="submit"] {
    background-color: #EB5E66;
    border: 0;
    border-radius: 44px;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    padding: 16px 24px;
}