@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');


*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
/*    font-family: 'Poppins', sans-serif;*/
}

 .card-content2 form .form-row2 .input2{
   color: rgba(0, 0, 0, 0.3);
}

.card-content2{
    background: #fff;
    height: auto;
    padding: 20px 0;
    width: 30%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.card-content2 h3{
    text-align: center;
    color: #E9A200;
    font-family: oswald;
    letter-spacing: 1.5px;
/*    padding: 25px 0 10px 0;*/
/*    font-size: 26px;*/
    font-weight: 500;
}
.form-row2{
    display: block;
    width: 100%;
    margin: 0 auto;
}
form select, form input{
    display: block;
    width: 93%;
    margin: 15px 12px;
    padding: 5px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    border: none;
    border: 1px solid #eee;
    font-weight: 300;
}
form input[type = text], form input[type = date],form input[type = number], form input::placeholder, select{
    color: #9a9a9a;
}
form input[type = submit]{
    color: #fff;
    background: #E9A200;
    padding: 12px 0;
    font-weight: 100;
    border-radius: 0px;
    cursor: pointer;
}
form input[type = submit]:hover{
    opacity: 0.9;
}
@media(max-width: 992px){
    .card-container2{
        grid-template-columns: 100%;
        width: 100vw;
    }

    .card-content2{
        width: 100%;
    }

    .card-img{
        height: 330px;
    }
}