main {
    background-color: #f8f8f8;
}

.banner {
    position: relative;
    height: 29rem;
    z-index: 1;
    background-size: cover;
    background-position: 40% 50%;
}
.banner::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    z-index: -1;
}

.banner-title {
    font-size: 3.125rem;
    letter-spacing: 2px;
}

.banner-subtitle {
    font-size: 1.1rem;
}

.form-card-container {
    max-width: 100%;
    z-index: 2;
}
.form-card {
    margin-top: -4rem;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 0.375rem;
    padding: 2rem;
}

.form-card-title {
    font-size: 1.125rem;
}

.form-card-subtitle {
    color: #5a5a5a;
}

.form-card-group {
    display: flex;
    flex-direction: column;
}

.form-card-label {
    font-size: 0.875rem;
    font-family: 'Roboto Mono';
    color: #3F4042;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.form-card-label > .label-optional {
    font-size: 0.625rem;
    color: #b0b0b0;
}

.form-card-input {
    font-size: 1rem;
    font-family: 'Rubik';
    color: #555555;
    border: 1px solid #F2F2F3;
    background-color: #F2F2F3;
    padding: 0.325rem 0.5rem;
    border-radius: 0 !important;
    transition: border 0.25s ease, background-color 0.25s ease
}
.form-card-input:focus {
    border: 1px solid #000000;
    box-shadow: none !important;
    outline: 0;
}

select.form-card-input:focus {
    background-color: #ffffff;
}

.form-card .form-check-input {
    box-shadow: none !important;
    padding: 0.5rem;
    transition: border 0.15s ease, background-color 0.15s ease;
}

.form-card .form-check-label {
    color: #3F4042;
}

.form-card .form-check-input:focus {
    border: 1px solid #000000;
}

.form-card .form-check-input:checked {
    background-color: #000000;
    border: 1px solid #000000;
}

.form-card .specials-label {
    font-size: 0.875rem;
    color: #3F4042;
    margin-top: 0.1rem;
    font-weight: 300;
}

.form-card .form-submit {
    background-color: #000000;
    letter-spacing: 1px;
    font-family: 'Roboto Condensed';
    padding: 1rem 2rem;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    border: 0;
    transition: padding 0.25s ease, background-color 0.25s ease;
}
.form-card .form-submit:hover {
    padding: 1rem 2.2rem 1rem 1.8rem;
    background-color: #323334;
}
.form-card .form-submit::after {
    position: relative;
    content: '>';
    font-family: 'Roboto Condensed';
    font-weight: 900;
    opacity: 0;
    right: -1.55rem;
    margin-left: -0.55rem;
    transition: opacity 0.25s ease, right 0.25s ease;
}
.form-card .form-submit:hover::after {
    opacity: 1;
    right: -1.05rem;
}

@media (min-width: 768px) {
    .banner {
        background-position: 50% 50%;
    }

    .banner-subtitle {
        font-size: 1.32rem;
    }

    .form-card-title {
        font-size: 1.75rem;
    }

    .form-card {
        padding: 2.5rem;
    }
}

@media (min-width: 992px) {
    .form-card-container {
        max-width: 50.63rem;
    }

    .form-card {
        margin-top: -5rem;
    }
}

@media (min-width: 1200px) {
    .form-card-container {
        max-width: 61rem;
    }
}

@media (min-width: 1600px) {
    .form-card-container {
        max-width: 65.56rem;
    }
}