.bkgd_color {
    background-color: #f7f7f7;
}

.form_title {
    background-color: #000;
    color: #fff;
}

.forms {
    border: solid #9B9B9B 1px;
    background-color: #fff;
}

.btn_pdf {
    background-color: #1A73E8;
    color: #fff;
    width: 160px;
}

/* Non-mobile screen */
@media only screen and (min-width: 577px) {

    .mobile-layout {
        display: none !important;
    }

    .form_title {
        background-color: #000;
        color: #fff;
    }

    .btn_pdf {
        width: 160px;
    }

    .btn_pdf:hover {
        color: white;
    }
}

/* Mobile screen */
@media only screen and (max-width: 576px) {

    .desktop-layout {
        display: none !important;
    }

    .form_title {
        background-color: #000;
        color: #fff;
    }

    .btn_pdf {
        width: 115px;
        font-size: 10pt;
    }

    .pdf_txt {
        color: white;
        text-decoration: none;
        font-size: 10pt;
    }
}