/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 5 Jan, 2023, 2:22:03 PM
    Author     : developer
*/
.appointmentHeading{
    background-color: #4C6C3C;
    color:white;
    padding:30px;
}
.formContainer{
    padding: 20px 5px;
    border: 1px solid whitesmoke;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: whitesmoke;
    width:70%;
    margin-top: 30px;
    margin-bottom: 40px;
}
/*.topAppointmentButton{
    color: white;
    border-radius: 4px;
    background-image:linear-gradient(#676767,#000000);
    text-decoration: none;
    padding:14px;
    font-family: 'Roboto';
    font-size: 18px; 
    font-weight:300;
    margin: 0px 12px;
    margin-bottom: 20px;
}*/
.topAppointmentButton{
    text-align:right; 
    margin-right: 30px;
}
.appointmentButton{
    background-color: #04AA6D;
    color: white;
    padding: 8px 20px;
    border-radius: 3px;
    margin-top: 10px;
    border-color: #04AA6D;
}.appointmentButton:hover{
    opacity: 0.9;
    background-color: #04886D;
}
.appointmentFields{
    width: 98%;
    height: 30px;
    font-size: 18px;
}
.textareaField{
    width: 99%;
    font-size: 18px;
    resize: none;
}
.textareaField:focus{
    border:0.5px solid orange;
}
.selectCity{
    width: 100%;
    height: 40px;
    font-size: 18px;
}
.appointmentloadingIcon{
    margin-top: -16px;
    width: 120px;
    height: 80px;
}
@media only screen and (max-width: 768px) {
    .formContainer{
        width: 90%;
    }
    .topAppointmentButton{
        text-align:center;
        margin-right: 0px;
    }
}
.appointmentSuccessResponseMessage,.appointmentFailureResponseMessage{
    font-family: 'Roboto';
    font-size: 26px; 
    font-weight:400;
    margin:20px;
    color:#303030;
}


