:root {
  --time: 0.45s;
  --color-primary: #1a6427;
  --color-primary-hover: #0e4317;
  --color-secondary: #4ef938;
  --color-secondary-hover: #29bf15;
  --font-primary: "Poppins", sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-size: 16px;
  background: #ffffff;
  font-family: var(--font-primary);
  --container-width: 1400px;
}

.patient-login {
  height: 100vh;
  background: url(../images/login-banner.jpg) no-repeat bottom;
  background-size: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p:only-child,
p:last-child {
  margin-bottom: 0;
}

p {
  font-size: 20px;
  margin-bottom: 15px;
  font-family: var(--font-primary);
  color: #212121;
  line-height: 28px;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
}

img,
svg {
  vertical-align: middle;
}

input,
select,
button,
textarea {
  cursor: pointer;
  font-size: 20px;
  font-family: var(--font-primary);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type="date"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
  text-align-last: left;
}

input[type="submit"] {
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

button {
  cursor: pointer;
}

:focus {
  outline: none;
}

:disabled {
  cursor: default;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  line-height: inherit;
}

/* span {
  display: inline-block;
} */

select {
  background-image: url("../images/down-arrow.png");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  -ms-progress-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@supports (-webkit-touch-callout: none) {
  .date-input:required:invalid::-webkit-datetime-edit {
    color: transparent;
  }

  .date-input:focus::-webkit-datetime-edit,
  .date-input:valid::-webkit-datetime-edit {
    color: inherit;
  }
 
  .date-input::before {
    content: attr(placeholder);
    color: #212121;
    position: absolute;
    pointer-events: none;
  }

  .date-input:focus::before,
  .date-input:valid::before {
    content: "";
  }

  .date-input {
    background: url("../images/calendar.png") no-repeat right 10px center;
    background-size: 20px;
    padding-right: 30px;
    cursor: pointer;
  }
}





form {
  --padding: 15px;
}

label {
  display: inline-block;
  margin: 0 0 7px 0;
  font-size: 13px;
}

select.form-field,
input.form-field {
  --height: 52px;
  color: #212121;
  height: var(--height);
  line-height: var(--height);
  padding: 0 var(--padding);
}

textarea {
  height: 140px;
  resize: none;
  padding: var(--padding);
}

textarea,
.form-field {
  display: block;
  width: 100%;
  background-color: #fff;
  border: none;
  -webkit-box-shadow: 0px 0px 5px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 5px -3px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 5px -3px rgba(0, 0, 0, 0.75);
  -webkit-border-radius: var(--radius);
  -moz-border-radius: var(--radius);
  border-radius: var(--radius);
}

input::placeholder {
  color: #212121;
}

input::-moz-placeholder {
  color: #212121;
  opacity: 1;
}

input:-ms-input-placeholder {
  color: #212121;
}

input::-ms-input-placeholder {
  color: #212121;
}

iframe {
  border: 0;
  vertical-align: bottom;
}

.w-100 {
  width: 100%;
}

.vh-100 {
  height: 100vh;
}

.relative {
  position: relative;
}

.container {
  margin: auto;
  max-width: var(--container-width);
}

.container-lg {
  margin: auto;
  max-width: 1700px;
}
