 input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: none;
     box-shadow: 10px 5px 11px #e5e5e5;
  border-radius: 4px;
  resize: vertical;
  font-family: "Figtree", sans-serif;
  font-size: 16px;
}

textarea:hover{
  border-bottom: 2px solid #a00505;
  
}

textarea:focus{
  border-bottom: 2px solid #a00505;
  outline: none;
  
}

input[type=text]:hover
{
  border-bottom: 2px solid #a00505;
    
}
input[type=text]:focus
{
  border-bottom: 2px solid #a00505;
    outline: none;
   
}


input[type=email]
{
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    resize: vertical;
    font-family: "Figtree", sans-serif;
  font-size: 16px;
  box-shadow: 10px 5px 11px #e5e5e5;

}
input[type=email]:hover
{
  border-bottom: 2px solid #a00505;
   
}
input[type=email]:focus
{
  border-bottom: 2px solid #a00505;
    
    outline: none;
}


input[type=tel]
{
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    resize: vertical;
}
input[type=tel]:hover
{
    border-bottom: 2px solid #a00505;
}
input[type=tel]:focus
{
    border-bottom: 2px solid #a00505;
    outline: none;
}


input[type=password]
{
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}
input[type=password]:hover
{
    border-bottom: 2px solid #a00505;
}
input[type=password]:focus
{
    border-bottom: 2px solid #a00505;
    outline: none;
}

select:hover{border-bottom: 2px solid #a00505;}
select:focus{border-bottom: 2px solid #a00505;outline: none;}


label {
  padding: 12px 12px 12px 0;
  display: inline-block;
   font-family: "Figtree", sans-serif;
  color: #333333;
  font-size: 17px;
}

input[type=submit] {



  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
  font-size: 16px;

 font-family: "Figtree", sans-serif;
    background-color: #a00505;
    color: #fff;
        padding: 17px 34px;
        border-radius: 25px;
    font-weight: 500;
}

input[type=submit]:hover {
   background-color: #e12929;
        transition: 300ms ease-in-out;
        color: #fff;
        box-shadow: 5px 11px 23px #d9d9d9cc;
}

input[type=date]
{
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  resize: vertical;
  color: #000000;
}

input[type=date]:focus
{
    border-bottom: 2px solid #a00505;
    outline: none;

}


form{
  width: 70%;
}

.form-container {
  border-radius: 5px;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

.col-25-adjust1 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75-adjust2 {
  float: left;
  width: 75%;
  margin-top: 6px;
}


.col-75-adjust2 textarea
{
        height: 117px !important;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}



   .error{
   color: #133f5c;

   }
   .swal2-container {
  z-index: 9999 !important;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 520px) {
  .col-25-adjust1, .col-75-adjust2, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}


/* ----------------------DOCTOR REGISTRATION FORM STYLE------------------ */
.search-field
{
    display: grid;
    grid-template-columns: 55px auto;
}

.drf-input
{
    background-color: #e6ebee !important;
     border: none !important;
    border-radius: 0px !important;
    margin-bottom: 11px !important;
   font-family: "Figtree", sans-serif;
    color: #000000;
    height: 53px;
}

.drf-input::placeholder{color: #133f5c;}

/* file input */
.inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.inputfile + .upload-label {
    /* font-size: 1.25em; */
    font-weight: 700;
    color: white;
    background-color: #b23737;
    display: inline-block;
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 6px;
}

.inputfile:focus + .upload-label,
.inputfile + .upload-label:hover {
    background-color: #dcd9d6;
    border: 2px solid #b23737;
    color:  black !important;
}

.inputfile + .upload-label {
	cursor: pointer; /* "hand" cursor */
}

.inputfile:focus + .upload-label {
	outline: 1px dotted #000;
	outline: -webkit-focus-ring-color auto 5px;
}
/* file input ends*/

/* custom select */
/* The container must be positioned relative: */
.custom-select {
  position: relative;

}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: #e6ebee;
  font-size: 14px !important;
}

.select-selected:hover{border-bottom: 2px solid #a00505;}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 23px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #0fb2cd transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
 border-bottom: 2px solid #a00505;
  top: 17px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
    color: #133f5c;
    padding-left: 14px;
    padding-top: 18px;
    border: none;
   border-bottom: 2px solid #a00505;
    cursor: pointer;


    font-size: 14px !important;

    height: 53px;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #e6ebee;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  overflow: auto;
  max-height: 217px;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: #11b2cd;
  color: #fff;
}


/* custom select 2*/
/* The container must be positioned relative: */
.custom-select2 {
  position: relative;

}

.custom-select2 select {
  display: none; /*hide original SELECT element: */
}

.select-selected2 {
  background-color: #e6ebee;
  font-size: 14px !important;
}

.select-selected2:hover{border-bottom: 2px solid #a00505;}

/* Style the arrow inside the select element: */
.select-selected2:after {
  position: absolute;
  content: "";
  top: 23px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #a00505 transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected2.select-arrow-active2:after {
  border-color: transparent transparent #a00505 transparent;
  top: 17px;
}

.select-items2 div
{
    color: #6d6d6d;
    padding-left: 14px;
    border-radius: 4px;
    padding-top: 12px;

    /* border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent; */
    cursor: pointer;
   font-family: "Figtree", sans-serif;
    font-size: 15px !important;
    height: 47px;
}

/* style the items (options), including the selected item: */
.select-selected2 {
    color: #6d6d6d;
    padding-left: 14px;
    border-radius: 4px;
    padding-top: 12px;
    /* border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent; */
    cursor: pointer;
   font-family: "Figtree", sans-serif;
    font-size: 15px !important;
    height: 47px;
    background-color: #fff;

    
}

/* Style items (options): */
.select-items2 {
  position: absolute;
  background-color: #e6ebee;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  overflow: auto;
  max-height: 217px;
}

/* Hide the items when the select box is closed: */
.select-hide2 {
  display: none;
}

.select-items2 div:hover, .same-as-selected2 {
  background-color: #a00505;
  color: #fff;
}


/* sweetalert custom  */
.swal2-popup{font-family: "Figtree", sans-serif !important;}
.swal2-styled.swal2-confirm{background-color: #1e6e9b !important; }

