.appointment{
    margin:  0 0 130px 0;
   .appointment_wrapper{
    padding: 110px 50px;
    background:  $white;
    border-radius: 20px; 
    box-shadow: 1px 1.732px 10px 0px #0000004d;
       h4{
        color: $black;
        font-size: 35px;
        font-weight:700;
        line-height: 45px;
       }
       p{
        color: $text; 
        font-size: 18px;
        font-weight:400;
        line-height: 28px;
        padding-top: 20px;
       }
       .form_wrapper{
          padding-top: 24px;
        .form_control{
            display: block; 
            width: 100%;
            height: 60px;
            padding:23px;
            background-color:#ffffff;
            background-clip: padding-box;
            border: 1px solid #bdbdc0;
            border-radius: 10px;
            transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
            -webkit-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
            -moz-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
            -ms-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
            -o-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;
            &:focus{
               outline: 0;
           } 
            &::placeholder{
                font-size: 16px;
                color: #aeacac;
                font-weight: 400;
            }
        }
       }
       a{
           padding: 18px 45px;
           border: 2px solid transparent;
           font-size: 18px;
           color: $white;
           background-color: $primaryColor;
           font-weight: 500;
           border-radius: 5px;
           -webkit-border-radius: 5px;
           -moz-border-radius: 5px;
           -ms-border-radius: 5px;
           -o-border-radius: 5px;
           &:hover{
               background-color: $white;
               color: $black;
               border: 1px solid $black;
            &:hover span{
                color: $black;
            }
           }
           span{
               padding-right:10px;
               font-size: 18px;
           }

       }
   }

}
