body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #333333;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #333333;
}
a {
  color: #333333;
  text-decoration: none;
  transition: all 0.4s;
}
a:hover,
a:focus {
  color: #c20227;
}
textarea,
input,
textarea:focus,
textarea:focus-visible,
input:focus,
input:focus-visible {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important; 
  -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important; 
  outline: none;
}
.f-vh {
  height: 100vh;
}
.w-100 {
  width: 100%;
}
.overflow-hidden {
  overflow: hidden;
}
.hidden {
  display: none;
}
.videocen-wrapper {
  position: relative;
  width: 100%;
}

a.button,
button {
  background: #c20227;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 11px;
  border: none;
  border-radius: 10px;
  line-height: 1.5;
  transition: all 0.2s;
}
a.button:hover,
a.button:focus,
button:hover,
button:focus {
  background: #d90a32;
}

/* Login Background Image */
.page-bg {
  position: relative;
  background-color: #c20227;
}
.page-bg img {
  position: absolute;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}
.page-bg:after {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  border-radius: 50px 0 0 50px;
}

/* Login Form */
.form-col {
  display: block;
  justify-content: center;
  align-self: center;
}
.form-wrapper {
  position: relative;
  transform: translateX(-100px);
  transition: all 0.4s;
  z-index: 1;
}
.form {
  max-width: 375px;
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;
}
.welcome-wrapper {
  text-align: center;
  margin-bottom: 50px;
}
.welcome-wrapper p {
  color: #888;
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 0;
}
.welcome-wrapper img {
  max-height: 25px;
}
.form .form-floating {
  margin-bottom: 20px;
}
.form input.form-control {
  padding: 20px;
  border: 1px solid #515050;
  border-radius: 10px;
  line-height: 1.5;
  transition: border-color 0.2s;
}
.form input.form-control:focus {
  border-color: #c20227;
}
.form .submit-btn {
  background: #c20227;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 11px;
  border: none;
  border-radius: 10px;
  line-height: 1.5;
  transition: all 0.2s;
}
.form .submit-btn:hover,
.form .submit-btn:focus {
  background: #d90a32;
}
.form .submit-btn:hover i::before {
  transition: all 0.2s;
}
.form .submit-btn:hover i::before,
.form .submit-btn:focus i::before {
  transform: translateX(4px);
}
.form .links {
  float: left;
  width: 100%;
  font-size: 14px;
  margin-bottom: 10px;
  margin-top: -10px;
}
.form .links .checkbox {
  text-align: left;
  float: left;
}
.form .links .forget-password {
  text-align: right;
  float: right;
  padding: 5px 0;
}
.form .submit-btn i {
  font-size: 24px;
  vertical-align: middle;
}
.or {
  position: relative;
  margin: 50px 0;
}
.or span {
  position: relative;
  color: #515050;
  background: white;
  padding: 0 10px;
  z-index: 1;
}
.or::before {
  content: "";
  position: absolute;
  background: #515050;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}
.social-login .google {
  background: #fff;
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #c20227;
  border-radius: 10px;
  padding: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.social-login .google .icon {
  width: 25px;
  margin-right: 5px;
}

.no-account a {
  font-weight: 500;
  color: #c20227;
}

/* Checkbox */
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + label {
  position: relative;
  padding-left: 30px;
  margin: 5px;
  cursor: pointer;
}
input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #515050;
  border-radius: 4px;
}
input[type="checkbox"] + label:after {
  content: "\f26e";
  font-family: bootstrap-icons;
  font-size: 28px;
  position: absolute;
  top: -13px;
  left: -3px;
  color: #c20227;
  opacity: 0;
  transform: translateY(-3px) scale(1.3);
  transition: all 0.25s ease;
}
input[type="checkbox"]:checked + label:after {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.form .error {
  color: #FF4D4D;
  font-size: 14px;
  text-align: left;
  margin-top: 5px;
}

/* Floating Label */
.form-floating {
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  color: #999;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 15px 20px;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out,
    color ease-in-out 0.1s;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating label svg {
  margin-right: 3px;
}
.form-floating label svg path {
  transition: all 0.2s;
}
.form-floating > .form-control:focus ~ label svg path,
.form-floating > .form-control:focus ~ label {
  color: #c20227;
  fill: #c20227;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Background Items */
.bg-item {
  content: url(../svg/bg-item.svg);
  position: absolute;
  pointer-events: none;
  transition: all 0.4s;
}
.bg-item-1 {
  top: -242px;
  left: 40%;
  transform: rotate(-128deg);
}
.bg-item-2 {
  top: 50%;
  right: -70px;
  transform: rotate(13deg);
}
.bg-item-3 {
  bottom: -190px;
  left: 40%;
  transform: rotate(95deg);
}

/* Verification Page */
form.verification {
  max-width: 480px;
}

form.verification .row {
  float: left;
}

form.verification .form-floating {
  position: relative;
}

form.verification .form-floating .form-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #C20227;
  font-size: 16px;
  padding: 10px 16px;
  border: 1px solid #B94058;
  line-height: 1.2;
}


/* Responsive Rules */

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
  .form-wrapper {
    transform: translateX(-60px);
  }

  .bg-item-1 {
    top: -252px;
  }
  .bg-item-2 {
    right: -140px;
  }
  .bg-item-3 {
    bottom: -210px;
  }
}

@media (max-width: 1299.98px) {
  .form-wrapper {
    transform: translateX(-50px);
  }

  .bg-item-1 {
    top: -272px;
  }
  .bg-item-2 {
    right: -160px;
  }
  .bg-item-3 {
    bottom: -230px;
  }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .form-wrapper {
    transform: translateX(-30px);
  }

  .bg-item-1 {
    top: -292px;
  }
  .bg-item-2 {
    right: -200px;
  }
  .bg-item-3 {
    bottom: -250px;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .videocen-wrapper {
    padding-bottom: 50px;
  }
  .f-vh {
    height: auto;
  }
  .overflow-hidden {
    overflow: auto;
  }
  .form-wrapper {
    transform: translateX(0);
  }

  .page-bg {
    display: none;
  }
  .form-col {
    padding: 80px 20px 20px;
  }

  .bg-item {
    display: none;
  }
  .welcome-wrapper {
    padding: 0 10px;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
}

@media (max-width: 419.98px) {
  .form-col {
    padding: 30px 20px 20px;
  }
  .form {
    max-width: 375px;
    padding: 0 0px;
  }
  .welcome-wrapper {
    margin-bottom: 30px;
  }
  .form .form-floating {
    margin-bottom: 15px;
  }
  .form input.form-control {
    padding: 15px;
  }
  .form .links {
    font-size: 13px;
    margin-bottom: 10px;
  }
  input[type="checkbox"] + label {
    padding-left: 25px;
  }
  .or {
    margin: 20px 0;
  }
  .social-login .google {
    margin-bottom: 20px;
  }
  .form .submit-btn {
    padding: 8px;
  }
  .social-login .google {
    font-size: 15px;
    padding: 12px;
  }
}

/* Tall devices landscape mode */
@media (max-width: 1199.98px) and (max-height: 900px) {
  .col-lg-6 {
    width: 100%;
  }
  .videocen-wrapper {
    padding-bottom: 50px;
  }
  .f-vh {
    height: auto;
  }
  .overflow-hidden {
    overflow: auto;
  }
  .form-wrapper {
    transform: translateX(0);
  }
  .page-bg {
    display: none;
  }

  .bg-item {
    display: none;
  }
}
