: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);
  --fz-24: 24px;
  --fz-35: 35px;
  --fz-50: 50px;
  --container-width: 1400px;
}

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

.redLoginButtonNew {
  width: 100%;
  color: rgb(255, 255, 255);
  height: 56px;
  background: rgb(208, 0, 3);
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  border-radius: 9px !important;
  transition: background 0.4s ease-in-out;
}

.redLoginButtonNew:hover {
  background: #a30003;
}

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: 24px;
  margin-bottom: 15px;
  font-family: var(--font-primary);
  color: #212121;
  line-height: 36px;
}

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: 24px;
  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="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("assets/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;
}

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);
}

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;
}

.patient-login-block .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.patient-login-content {
  text-align: center;
}
.patient-login-content p {
  font-size: 21px;
}

.patient-login-content h1 {
  font-size: var(--fz-50);
}

.patient-login-content p,
.patient-login-content h1 {
  color: #ffffff;
}

.patient-login-form {
  width: 100%;
  max-width: 440px;
  margin: 34px auto;
}
.patient-login-form button {
  width: 100%;
  color: #ffffff;
  background: #d00003;
  border: none;
  height: 56px;
  border-radius: 9px;
  transition: background 0.4s ease-in-out;
}
.patient-login-form .form-field {
  height: 56px;
  font-size: 21px;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 9px;
}

.patient-login-content img {
  margin: 0 auto 30px auto;
}

.patient-login-content p a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--color-secondary);
}

.patient-login-form button:hover {
  background: #a30003;
}

.patient-login-form .form-field::placeholder {
  color: #000000;
  opacity: 1;
}

.patient-login-form .form-field:-ms-input-placeholder,
.patient-login-form .form-field::-ms-input-placeholder {
  color: #000000;
}

@media (max-width: 1200px) {
  p {
    font-size: 16px;
    line-height: 26px;
  }
  body {
    --fz-24: 16px;
    --fz-35: 24px;
    --fz-50: 30px;
    --space-160: 80px;
  }
  .container {
    max-width: 92%;
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  p,
  body {
    font-size: 14px;
    --space-60: 40px;
    --space-160: 50px;
    --fz-24: 14px;
    --fz-35: 22px;
    --fz-50: 26px;
  }
  p {
    line-height: 23px;
  }
  input,
  select,
  button,
  textarea {
    font-size: 18px;
  }
  .patient-login-content p {
    font-size: 17px;
  }
  .patient-login-content img {
    margin: 0 auto 25px auto;
    max-width: 250px;
  }
  .patient-login-form .form-field {
    height: 46px;
    font-size: 17px;
    margin-bottom: 14px;
  }
  .patient-login-form button {
    height: 46px;
  }
}
