body, html {
    background-color: #f2f5f8;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1000px;
    }

    #signup-div {
        max-width: 600px;
        margin: 0 200px;
    }
}

.card-header {
    background: none;
    text-align: center;
    border-bottom: none;
}

.card {
    -webkit-box-shadow: 13px 12px 5px -10px rgba(196, 194, 196, 0.72);
    -moz-box-shadow: 13px 12px 5px -10px rgba(196, 194, 196, 0.72);
    box-shadow: none;
    border: none;
}

h1, h4 {
    margin-bottom: 0;
}

h5 {
    margin-bottom: 30px;
}

.btn-primary, .btn-primary:hover {
    background-color: #007bff;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 20px;
}

.interestCheckBox {
    height: 20px;
    width: 20px;
}

#signup-content-1 {
    margin-bottom: 50px;
}

.signupLabels {
    font-size: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.table thead th {
    border: none;
    font-size: 20px;
}

.table th, .table td {
    border: none;
}

.table td {
    font-size: 20px;
}

/* --------------------------------------------------- */
/* ---------------------- Footer ----------------------*/
/* --------------------------------------------------- */
#footer {
    background: #f2f5f8;
    margin-top: 50px;
    padding: 0 0 30px 0;
    font-size: 14px;
}

    #footer .copyright {
        text-align: center;
        padding-top: 30px;
    }

.copyright-link {
    color: #212529;
}

    .copyright-link:hover {
        color: DodgerBlue;
        text-decoration: none;
    }

.contact-interests {
    text-align: center;
}

.requiredfield {
    color: #D32F2F;
    font-size: 20pt;
}

.has-label {
    position: relative;
    cursor: pointer;
}

    .has-label::after {
        content: attr(data-label);
        position: absolute;
        bottom: 120%; /* position above the span */
        left: 50%;
        transform: translateX(-50%);
        background: #333;
        color: #fff;
        padding: 4px 8px;
        font-size: 12px;
        border-radius: 4px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    .has-label:hover::after {
        opacity: 1;
    }