@import url("./index.css");

body {
  margin: 0;
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", "Roboto", "Ubuntu", sans-serif;
  background-color: black;
}

.main-bg-img {
  transform: scale(1) translate(-8.75%, -18%);
  object-fit: cover;
}

/* Header - Navbar Section */
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}

/* SignIn Section */
.signin-container {
  /* style for centering <div> */
  padding: 3rem 4rem;
  position: absolute;
  margin: 8.75% 25% 0;
  top: 0;
  left: 0;

  /* other style */
  overflow: hidden;
  background-color: #000000b3;
  border-radius: 0.25rem;
  z-index: 1;
}

#form-header {
  margin: 0 0 1.75rem;
  padding: 0;
  color: rgb(255, 255, 255);
  font-size: 2rem;
  font-weight: 700;
}

.form-floating {
  width: 100%;
}

.form-floating label {
  color: rgba(255, 255, 255, 0.7) !important;
  left: 0.25rem;
}

.form-floating label::after {
  background-color: transparent !important;
}

.form-control {
  border-color: rgba(128, 128, 128, 0.7);
  background-color: rgba(22, 22, 22, 0.7) !important;
}

.form-control:focus {
  box-shadow: none;
  outline: rgb(255, 255, 255) solid 0.125rem;
  outline-offset: 0.125rem;
}

#floatingInput,
#floatingPassword {
  color: white;
  padding: 1.5rem 7rem 0.5rem 1rem;
  border-radius: 0.25rem;
}

.signin-btn {
  color: white;
  background-color: rgb(229, 9, 20);
  font-size: 1rem !important;
  font-weight: 500 !important;
  border-radius: 0.25rem !important;
  border: none !important;
  width: 100% !important;
  padding: 0.5rem 0 !important;
  transition-duration: 250ms !important;
  transition-property: background-color !important;
}

.btn:hover {
  background-color: rgb(229, 9, 20, 0.75) !important;
}

.or {
  color: rgba(255, 255, 255, 0.7);
  margin: 1.5rem 0;
}

.signin-code {
  color: white;
  background-color: rgb(255, 255, 255, 0.2);
}

.signin-code:hover {
  background-color: rgb(255, 255, 255, 0.15);
}

.forget-pwd:hover {
  text-decoration: underline !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Form Footer Section */
.checkbox-container {
  font-size: inherit;
  line-height: inherit;
}

#remember-me {
  appearance: none;
  height: 1.25rem;
  width: 1.25rem;
  border: 0.001rem solid rgba(255, 255, 255, 0.7);
  border-radius: 0.125rem;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

#remember-me:hover {
  border: 0.025rem solid white;
}

#remember-me:checked {
  background-color: white;
  border-color: white;
}

#remember-me:checked:hover {
  background-color: rgba(255, 255, 255, 0.7);
  border-style: none;
}

#remember-me:checked::after {
  content: "✓";
  color: black;
  display: flex;
  text-align: center;
  justify-content: center;
  font-weight: normal;
  line-height: 1rem;
}

.label-remember-me {
  padding-left: 0.75rem;
}

#link:hover {
  text-decoration: underline !important;
  color: #0080ff;
}

.recaptcha-terms-of-use p span,
.recaptcha-terms-of-use--disclosure {
  font-size: small;
}

.recaptcha-terms-of-use--link-button {
  display: inline;
  background: none;
  background-color: transparent;
  border: none;
  color: #0080ff;
  font-size: small;
  font-family: inherit;
  padding: 0;
}

.recaptcha-terms-of-use--link-button:hover {
  text-decoration: underline;
}

/* Divider: Section Divider */
.section-divider {
  display: none;
}

/* Footer Section */
footer {
  background-color: transparent;
}

.page-footer {
  position: static;
  margin-top: 24.23%;
}