.loader {
    margin-left: 10px;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.card{
    background-color: #f6f8ff;
    border: none;
    border-radius: 15px;
    padding: 30px;
}
.card .card-img{
    display: flex;
    align-items: center;
    justify-content: center;
}
.card img{
    width: 25%;  
}
.card h5{
    font-size: 25px;
    font-weight: bold;
    color: #35364A;
}

.contact-form{
    padding: 40px;
}
.contact-form form input{
    width: 50%;
    margin-bottom: 25px;
}
.contact-form form .name{
    display: flex; 
}
.contact-form form .email-phone{
    display: flex;
}
.contact-form form textarea{
    width: 100%;
    height: 100px;
    border: none;
    border-radius: 10px;
    border-bottom: 2px solid #ff9c01;
    outline: none;
}
.contact-form form #submit {
    width: 100%;
    margin-top: 30px;
    background-color: #ff9c01;
    border-radius: 50px;
    color: #fff;
    font-weight: bold;
}