@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    min-height: 100vh;
    background: #f6f8fa;
    font-family: 'Poppins', sans-serif;
}

.patient-form{
/*    max-width: 700px;*/
    width: 100%;
    background: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1),
                0px 5px 12px -2px rgba(0, 0, 0, 0.1),
                0px 18px 36px -6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
/*    margin: 10px;*/
}

 .title{
/*  background: linear-gradient(to right, #D64141, #F37A65);*/
padding: 15px 0;
  background: #fff;
  color: #3a3a3a;
  text-align: center;
  border-bottom: 1px solid #d6d8da;
} 

 .title p{
  font-size: 22px;
  font-weight: 700;
  position: relative;
  letter-spacing: 1px;
}



.user_details{
    padding: 20px;
}
.user_details h5 {
  font-weight: 300;
}
.field {
  margin: 0 0 20px 0;
}
.user_details .input_box{
/*    width: calc(100% / 2 - 20px);*/
    margin: 0 0 20px 0;
}

label{
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
	font-size: 18px;
}

label::after{
    content: " *";
    color: red;
}

.input_box input{
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 16px;
    padding-left: 15px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
    background-color: #f6f8fa;
    font-family: 'Poppins', sans-serif;
    transition: all 120ms ease-out 0s;
}


.input_box select{
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 16px;
    padding-left: 15px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
    background-color: #f6f8fa;
    font-family: 'Poppins', sans-serif;
    transition: all 120ms ease-out 0s;
}

.input_box input:focus,
.input_box input:valid{
    box-shadow: 0px 0px 0px 2px #AC8ECE;
}


.reg_btn{
    padding: 25px;
    margin: 15px 0;
}

.reg_btn input{
    height: 45px;
    width: 100%;
    border: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    background: linear-gradient(to right, #F37A65, #D64141);
    border-radius: 5px;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}


.reg_btn input:hover{
    background: linear-gradient(to right, #D64141, #F37A65);
}

.reg_btn1 input{
    background: linear-gradient(to right, #2E3EC4, #6589F3);

}

.reg_btn1 input:hover{
    background: linear-gradient(to right, #2E3EC4, #6589F3);

}
.appt-no 
{
	
	display: flex;
  justify-content: center;
}

.appt-no p
{
font-size: 70px;
  border: 1px solid #00000042;
  border-radius: 10px;
  font-weight: 700;
 color: #3e3c3c;
  padding: 10px 20px;
  line-height: 70px;
}

.patient-info {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f2776357;
  margin-bottom: 0px;
  padding: 10px 0;
}

.patient-info p
{
	margin: 0;
}



.patient-info p span {
  font-size: 18px;
  font-weight: 500;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
    border-top-width: 0px;
    border-top-style: none;
    border-top-color: currentcolor;
  border-top: 2px dashed rgb(240, 117, 98);
}

.logo-img img
{
	height: 90px;
	border-radius: 5px;
}

.space
{
	padding: 80px 0;
}

.appt-no1 p {
  font-size: 30px;
  border: 1px solid #00000042;
  border-radius: 10px;
  font-weight: 500;

  padding: 10px 20px;
  line-height: 40px;
}

.book-text
{
	font-size: 19px !important;
}
.opd-status-message p {
  background: linear-gradient(to right, #21CE1C, #06861A);
  padding: 5px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  border-radius: 6px;
  letter-spacing: 1px;
  font-weight: 500;
}
.opd-status-message1 p {
  background: linear-gradient(to right, #E73949C7, #D03452);
  padding: 5px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  border-radius: 6px;
  letter-spacing: 1px;
  font-weight: 500;
}
/*=================================================================================================*/
@media screen and (max-width: 584px){    

    .user_details .input_box{
        width: 100%;
    }
	.space
{
	padding: 60px 0;
}
	
	.patient-info {
  display: block;

  border-bottom: 1px solid #f2776357;
  margin-bottom: 0px;
  padding: 10px 0;
}
	.patient-info p 
	{
		line-height: 30px;
	}
	
	
	.book-text
	{
		display: inline-grid;
		
	}
	
	
}

