input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea[type="text"],
select,
textarea {
    font-size: 18px;
    line-height: 20px;
    padding: 0 16px;
    height: 48px;
    background-color: #f1f1f1;
    border: 1px solid #d6d6e7;
    border-radius: 5px;
    color: rgb(35, 38, 59);
    box-shadow: inset 0 1px 4px 0 rgb(119 122 175 / 30%);
    overflow: hidden;
    transition: all 100ms ease-in-out;
    margin: 5px;
    width: 100%;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
textarea[type="text"]:focus,
select:focus,
textarea:focus {

    box-shadow: 0 3px 0 0 rgb(35 38 59 / 5%);
}
.warning-box {
    margin: auto;
    width: auto;
    box-shadow: 0px 0px 2px 2px Red;
    padding: 20px;
    width: max-content;
    font-size: 18px;
    color: #000;
}
.horizontal-rule {
    color: #000000;
}
h3{
    background:#f1b825;
    color:#000000 !important;
    width:100%;
    padding:5px;
    box-shadow:0px 0px 1px 1px #000000;
    text-align:center;
}
h4 {
    background: #4C4E52;
    padding: 10px;
    color: #fff !important;
    width: 100%;
    font-size: 18px !important;
    font-weight: bold !important;
    box-shadow: 2px 2px 2px 2px #ffffff inset;
    text-align: center;
}
form {
    width: 50%;
    display: flex;
    margin: auto;
}
label{
    font-size:18px;
}
em{
    font-size:16px;
    font-weight:bold;
}
input[type="submit"] {
    background: #f1b825 !important;
    color:#000000 !important;
    font-size: 18px !important;
    font-weight: bold !important;
    padding: 10px !important;
    width:50%;
    float:right;
    border-radius:10px;
    border:none !important;
}
input[type="submit"]:hover {
    background: #000000 !important;
    color:#ffffff !important;
    
}
input[type="radio"], input[type="checkbox"] {
    height:20px;
    width:20px;
}
@media (min-width: 600px) and (max-width: 1024px) {
    input[type="submit"] {
        background: #f1b825 !important;
        font-size: 18px !important;
        font-weight: bold !important;
        padding: 10px !important;
        width: 100%;
        float: right;
        border-radius: 10px;
        border: none !important;
    }
    form {
        width: 100%;
        display: flex;
        margin: auto;
    }
    .warning-box {        
        width: 100%;      
    }
}
@media (max-width: 600px) {
    input[type="submit"] {
        background: #f1b825 !important;
        font-size: 18px !important;
        font-weight: bold !important;
        padding: 10px !important;
        width: 100%;
        float: right;
        border-radius: 10px;
        border: none !important;
    }
    form {
        width: 100%;
        display: flex;
        margin: auto;
    }
    .warning-box {
        width: 100%;
    }
}