@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Libre Baskerville", serif;;
    }
a{
  text-decoration: none;
}
a:focus,
img:focus,
input:focus,
textarea:focus,
button:focus {
  outline: none !important;
  box-shadow: none !important;
}
img{
    max-width: 100%;
}
/* login page */
.body-wrap {
  background: #fbfbfb;
}
.login-wrap {
  max-width: 500px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: auto;
  min-height: 100vh;
  width: 100%;
  padding: 20px 0;
}
.login-wrap-col{
  width: 100%;
}
.login-wrap-col h1{
  color: #000;
font-size: 48px;
font-weight: 500;
word-wrap: break-word;
margin-top: 15px;
margin-bottom: 20px;
margin-top: 35px;
}
.login-wrap-col p {
  font-size: 18px;
  color: #000;
  margin-bottom: 25px;
}
.form-wrap form {
  background: white;
  box-shadow: 1px 1px 25px 30px rgba(0, 0, 0, 0.02);
  border-radius: 25px;
  padding: 30px 45px;
}
.form-wrap label {
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 600;
  word-wrap: break-word;
  display: block;
  margin-bottom: 7px;
  font-family: "Montserrat", sans-serif;
}
.form-wrap input[type="text"],
.form-wrap input[type="email"],
.form-wrap input[type="tel"],
.form-wrap input[type="number"],
.form-wrap input[type="password"],
.form-wrap input[type="date"],
.form-wrap textarea {
  background: #f1f2f5;
  border: 1px #f1f2f5 solid;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  word-wrap: break-word;
  margin-bottom: 0;
  color: #000;
  font-family: "Montserrat", sans-serif;
}
.form-wrap input[type="date"]::-webkit-calendar-picker-indicator {
  /* display: none; */
  background-image: url(../img/icon-calendar.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 20px 20px;
    background-position: center right;
}
.form-wrap input[type="date"]{
  /* background-image: url(../img/icon-calendar.svg);
  background-repeat: no-repeat;
  background-size: contain; */
}
.form-wrap input[type="text"]:focus,
.form-wrap input[type="email"]:focus,
.form-wrap input[type="tel"]:focus,
.form-wrap input[type="number"]:focus,
.form-wrap input[type="password"]:focus,
.form-wrap input[type="text"]:focus,
.form-wrap textarea:focus{
  color: #252525;
  background: #ECECEC;
}
.form-wrap input::placeholder{
  color: #BFBFBF;
}
.date-fld {
  position: relative;
}
.btn.btn_primary {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  word-wrap: break-word;
  padding: 14px;
  color: white;
  background: #000;
  border: 1px solid #000;
  border-radius: 0;
  min-width: 200px;
  transition: 0.3s;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: "Montserrat", sans-serif;
}
.btn.btn_primary:hover{
  background: white;
  color: #000;
}
.form-wrap h6{
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
  margin-bottom: 15px;
  text-align: center;
}
.instruction-sec{
  margin: 35px 5px 15px;
}
.required-fld input{
  border: 1px solid #fe3232 !important;
}
.error-fld{
  color: #fe3232;
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
  text-align: center;
  display: none;
  margin-top: 10px;
}
.required-fld .error-fld{
  display: block;
}
.fld-wrap{
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) and (min-width: 1px)  {
  .login-wrap-col h1 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 20px;
}
.login-wrap-col p {
  font-size: 16px;
}
.form-wrap form {
  border-radius: 15px;
  padding: 25px 15px;
}
.logo-wrap img {
  max-width: 300px;
}
.form-wrap label{
  font-size: 14px;
}
.btn.btn_primary {
  font-size: 16px;
  padding: 12px;
}
.form-wrap input[type="text"], .form-wrap input[type="email"], .form-wrap input[type="tel"], .form-wrap input[type="number"], .form-wrap input[type="password"], .form-wrap input[type="date"], .form-wrap textarea{
  padding: 10px 24px;
  font-size: 16px;
}
.form-wrap input[type="date"]::-webkit-calendar-picker-indicator {
    background-size: 18px 18px;
}
}

/* media query css */