
.form_c2c_hero form {
    background-color: rgba(255, 255, 255, 1.0);
    box-shadow: 0 0 3rem 0 rgba(0, 0, 0, 0.25);
    padding: 0.5rem 1.5rem 1.5rem 1.5rem;
    border-radius: 1rem;

    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.form_c2c_hero form .formTitle {
    text-align: center;
    font-size: 1.3rem;
}

.form_c2c_hero form .formTitle img {
    width: 100%;
    max-width: 20rem;
}

.form_c2c_hero form .formField {
    display: grid;
    grid-template-rows: auto auto;
    row-gap: 0.25rem;
}

.form_c2c_hero form .formField label {
    display: none;
}

.form_c2c_hero form .formSubmit {
    text-align: center;
}

.form_c2c_hero form .or {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.0rem;
    align-items: center;
}

.form_c2c_hero form hr {
    width: 100%;
    opacity: 0.5;
    margin: 1.0rem 0;
}

form textarea,
form input[type=tel],
form input[type=email],
form input[type=password],
form input[type=text],
form input[type=submit] {
    padding: 0.75rem;
    border-radius: 0.35rem;
    border: 0;
    width: 100%;
    box-sizing: border-box;
}

form textarea,
form input[type=tel],
form input[type=email],
form input[type=password],
form input[type=text] {
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
}

form textarea {
    height: 5rem;
}