body {
        position: relative;
        padding: 60px 0 ;
        font-family: 'Roboto', sans-serif;
        height: 100vh;
        background: #f5f5f5
    }

  
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.card {
    background: #ffffff;
    border-radius: 15px;
    background-position: center;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px !important;
    
    backdrop-filter: blur(1px);
}
.head_top h1 {
    font-size: 22px;
    font-weight: bolder;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 1px;
    margin-top: 10px;

}
.head_top::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    width: 20%;
    height: 5px;
    background: #469cc0;
    margin: auto;
    border-radius: 10px;
}
.head_top span {
    color: #469cc0;
}
.brand_logo img {
    max-width: 200px;
}
.head_top h2 {
    font-size: 30px;
    color: #000;
    text-transform: capitalize;
    font-weight: bolder;
    letter-spacing: 1px;
    padding-bottom: 20px;
    margin: 0px;
}
.form-control {

    color: #000;
}
.form-control::placeholder{
    color: #c8c6c4;
    font-size: 12px;
}

input[type=text]:focus {
    border-color: #469cc0;
    color: #000;
}
  .custom_btn {
    background:linear-gradient(45deg, #449fc3, #6f4e7d);
    color: #fff;
    font-weight: bold;
    width: 100%;
    border: 0px;
    margin-top: 10px;
    padding: 7px 0px;
    font-size: 18px;
    border-radius: 6px;
}
.text-orange {
    color: #469cc0;
}
@media screen and (max-width:575px){
    .head_top h1 {
        font-size: 21px;
    }
    .head_top span {
        display: block;
    }
    .head_top h2 {
        font-size: 18px;
    }
}