/* Google Font Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

:root {

  --primary-color: #70459b;
  --primary-light-primary: #b19ee3;
  --secondary-color: #494C9E;
  --secondary-light-color: #8183bc;
  --grey-color: #808080;
  --bg-color: rgb(208 214 224 / 40%);
  --scroller-color: color(rgba(0, 0, 0, 0.513));
  --scroller-color-hovered: rgba(0 0 0 / 70%);
  --bg-register-color: #70459bb5;
  --black-color: #212529;
}

/* --------------------\
| Login & Registration  |
\--------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background-size: contain;
  padding: 30px;
  background: url('../images/landing_bg.svg');
  background-clip: border-box;
  background-repeat: no-repeat;
  background-size: cover;
}

.domain-logo {
  background-image: url('../images/empire_institute/logo.png');
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-gray {
  color: var(--grey-color);
}

.text-decoration {
  color: inherit;
}

.text-xs {
  font-size: 13px;
}

.text-xlg {
  font-size: 25px;
}

.container {
  position: relative;
  max-width: 1212px;
  width: 80%;
  padding: 30px 25px;
  perspective: 2700px;
  border-radius: 6px;

}

.heading-sm {
  display: none;
}

@media (width < 729px) {
  body {
    padding: inherit;
    min-height: auto;
    background: transparent;
  }

  .container {
    position: relative;
    max-width: 1212px;
    width: 90% !important;
    background: #fff;
    padding: 30px 25px;
    box-shadow: none !important;
    perspective: 2700px;
    border-radius: 6px;

  }

  .heading-md {
    display: none;
  }

  .heading-sm {
    display: block;
  }


}

.container .cover {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 50%;
  z-index: 98;
  transition: all 1s ease;
  transform-origin: left;
  transform-style: preserve-3d;
}

.container #flip:checked~.cover {
  transform: rotateY(-180deg);
}

.container .cover .front,
.container .cover .back {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.cover .back {
  transform: rotateY(180deg);
  backface-visibility: hidden;
}

.container .cover::before,
.container .cover::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url('images/building.jpg');
  opacity: 0.9;
  background-color: #502ba678;
  background-size: cover;
}

.container .cover::after {
  opacity: 0.3;
  transform: rotateY(180deg);
  backface-visibility: hidden;
}

.container .cover img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 10;
}

.container .cover .text {
  position: absolute;
  z-index: 130;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.link-color {
  color: black !important;
}

.cover .text .text-1,
.cover .text .text-2 {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.cover .text .text-2 {
  font-size: 15px;
  font-weight: 500;
}

.container .forms {
  height: 100%;
  width: 100%;
  background: #fff;
  border-radius: 30px;
}

.form-content .login-form,
.form-content .signup-form {
  width: calc(100% / 2 - 25px);
}

.forms .form-content .title {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  color: #333;
}

.forms .form-content .title:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 25px;
  background: #7d2ae8;
}

.forms .signup-form .title:before {
  width: 20px;
}

.forms .form-content .input-boxes {
  margin-top: 30px;
}

.forms .form-content .input-box {
  display: flex;
  align-items: center;
  height: 50px;
  width: 100%;
  margin: 10px 0;
  position: relative;
}

.form-content .input-box input {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  padding: 0 30px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 2px solid rgba(0, 0, 0, 20%);
  transition: all 0.3s ease;
}

.form-content .input-box-reset input {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  font-size: 16px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.form-content .input-box input:focus,
.form-content .input-box input:valid {
  border-color: #502BA6;
}

.form-content .input-box i {
  position: absolute;
  color: var(--primary-color);
  font-size: 17px;
}

/*  */
forms .form-content .input-boxes {
  margin-top: 30px;
}

.forms .form-content .input-box {
  display: flex;
  align-items: center;
  height: 50px;
  width: 100%;
  margin: 10px 0;
  position: relative;
}

.form-content .input-box select {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  padding: 0 30px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.form-content .input-box select:focus,
.form-content .input-box select:valid {
  border-color: #502BA6;
}

.form-content .input-box i {
  position: absolute;
  color: var(--primary-color);
  font-size: 17px;
}

.forms .form-content .text {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.forms .form-content .text a {
  text-decoration: none;
}

.forms .form-content .text a:hover {
  text-decoration: underline;
}

.forms .form-content .button {
  color: #fff;
  margin-top: 40px;
}

.forms .form-content .button input {
  color: #fff;
  background: var(--primary-color);
  border-radius: 6px;
  padding: 0;
  cursor: pointer;
  transition: all 0.4s ease;
}

.forms .form-content .button input:hover {
  background: #5b13b9;
}

.forms .form-content label {
  color: #5b13b9;
  cursor: pointer;
}

.forms .form-content label:hover {
  text-decoration: underline;
}

.forms .form-content .login-text,
.forms .form-content .sign-up-text {
  text-align: center;
  margin-top: 25px;
}

.container #flip {
  display: none;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}

.eye {

  position: relative;
  right: 30px;

}

#hide1 {
  display: none;
}

#show {
  display: none;
}

#see {

  display: none;
}

@media (width < 730px) {
  .container .cover {
    display: none;
  }

  .form-content .login-form,
  .form-content .signup-form {
    width: 100%;
    margin-top: -24px;
  }

  .form-content .signup-form {
    display: none;
  }

  .container #flip:checked~.forms .signup-form {
    display: block;
  }

  .container #flip:checked~.forms .login-form {
    display: none;
  }
}

@media (width > 731px) {
  .cover-sm {
    display: none;
  }
}

@media (width < 728px) {
  .cover-sm {
    background-image: url("../images/building.jpg");
    height: 333px;
    display: flex;
    background-size: cover;
  }
}

@media (width < 499px) {
  .cover-sm {
    background-image: url("../images/building.jpg");
    height: 293px;
    display: flex;
  }
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333333;
  transition: opacity 0.75s, visibility 0.75s;
}

.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader::after {
  content: "";
  width: 75px;
  height: 75px;
  border: 15px solid #ddd;
  border-top-color: #009578;
  border-radius: 50%;
  animation: loading 0.75s ease infinite;
}

@keyframes loading {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}

.text-xxs {
  font-size: 10px;
}

.login-section {

  padding: 7em 0;

}

.footer {
  position: absolute;
  bottom: -227px;
  width: 100%;
  color: #000;
  padding: 10px;
  text-align: center;
}

.content-footer {
  position: absolute;
  bottom: -11px;
  width: 100%;
  color: #000;
  padding: 10px;
  text-align: center;
}

input[type="submit"],
button[type="submit"] {
  color: #fff !important;
  background: var(--primary-color) !important;
  border-radius: 6px !important;
  padding: 7px !important;
  top: 10px;
  width: 100%;
  border-color: transparent;
  cursor: pointer !important;
  transition: all 0.4s ease !important;
  position: relative;
}

.form-check-input:checked {
  background-color: #70459b !important;
  border-color: #70459b !important;
}

.content-creator-bg {
  background-image: url("../images/internswork.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bg-primary-system {
  background-color: transparent;


}

.text-sm-grey {
  color: #fff !important;
}

@media (width < 728.98px) {
  .text-sm-grey {
    color: #686666 !important;
  }
}

.content-creator-logo {
  background-image: url("../images/new_orcaa_logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 7vh;
}

.exclamation {
  background-image: url("../images/exclamtion_mark_icon.png");
  height: 70px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-system {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

/* ---------------------PAGE SCROLLER ------------------------*/

::-webkit-scrollbar {
  width: 7px;
  height: 6px;
}

body::-webkit-scrollbar-track {
  background-color: var(--white);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--scroller-color);
  border: 1px solid var(--white);
  border-radius: 10px;

}

/* ---------------------NEW LOGIN CARD------------------------ */

.login-wrapper .wrapper {
  padding: 0 20px 0 20px;
}

.login-wrapper .main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.login-wrapper .side-image {
  background-image: url("../images/building.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0 10px 10px 0;
  position: relative;
}

.login-wrapper .row {
  width: 900px;
  height: 550px;
  border-radius: 10px;
  background: #fff;
  padding: 0px;
  box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.2);
}

.login-wrapper .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login-wrapper .text p {
  color: #fff;
  font-size: 20px;
}

.login-wrappe i {
  font-weight: 400;
  font-size: 15px;
}

.login-wrapper .right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.login-wrapper .input-box {
  width: 330px;
  box-sizing: border-box;
}

.login-wrapper img {
  width: 35px;
  position: absolute;
  top: 30px;
  left: 30px;
}

.login-wrapper .input-box header {
  font-weight: 700;
  text-align: center;
  font-size: 26px;
}

.login-wrapper .input-field {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0 10px 0 10px;
}

.login-wrapper .input {
  height: 45px;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  margin-bottom: 20px;
  color: #40414a;
}

.login-wrapper .input-box .input-field label {
  position: absolute;
  top: 10px;
  left: 10px;
  pointer-events: none;
  transition: .5s;
}

.login-wrapper .input-field input:focus~label {
  top: -10px;
  font-size: 13px;
}

.login-wrapper .input-field input:valid~label {
  top: -10px;
  font-size: 13px;
  color: #5d5076;
}

.login-wrapper .input-field .input:focus,
.input-field .input:valid {
  border-bottom: 1px solid var(--black-color);
}

.login-wrapper .submit {
  border: none;
  outline: none;
  height: 45px;
  background: #ececec;
  border-radius: 5px;
  transition: .4s;
}

.login-wrapper .submit:hover {
  background: rgba(37, 95, 156, 0.937);
  color: #fff;
}

.login-wrapper .signin {
  text-align: center;
  font-size: small;
  margin-top: 25px;
}

.login-wrapper span a {
  text-decoration: none;
  font-weight: 700;
  color: #000;
  transition: .5s;
}

.login-wrapper span a:hover {
  text-decoration: underline;
  color: #000;
}

@media (width < 768px) {
  .login-wrapper .side-image {
    border-radius: 10px;
  }

  .login-wrapper img {
    width: 35px;
    position: absolute;
    top: 20px;
    left: 47%;
  }

  .login-wrapper .text {
    position: absolute;
    top: 70%;
    text-align: center;
  }

  .login-wrapper .text p,
  i {
    font-size: 16px;
  }

  .login-wrapper .row {
    max-width: 420px;
    width: 100%;
  }

  .login-wrapper .side-image {
    display: none;
  }
}

/* ---------------------NEW Register CARD------------------------ */
.register-wrapper .required {
  right: -7px !important;
  top: 34% !important;
  transform: translateY(-50%) !important;
  pointer-events: none !important;

  /* Ensures it doesn't interfere with clicking the input */
}

.register-wrapper .wrapper {
  background: #ececec !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
}

.register-wrapper .main {
  width: 100% !important;
  max-width: 1200px !important;
}

.register-wrapper .row {
  background: #fff !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.2) !important;
}

.register-wrapper .side-image {
  background-image: url("../images/building.jpg") !important;
  background-size: cover;
  background-repeat: no-repeat !important;
  min-height: 100% !important;
}

.register-wrapper .side-image-assist {
  background-image: url("../images/orcaa-assist-hero.svg") !important;
  background-size: cover;
  background-repeat: no-repeat !important;
  min-height: 100% !important;
}

.register-wrapper .right {
  padding: 30px !important;
}

.register-wrapper .input-box {
  max-width: 400px !important;
  margin: 0 auto !important;
}

.register-wrapper .input-box header {
  font-weight: 700 !important;
  text-align: center !important;
  margin-bottom: 45px !important;
}

.register-wrapper .input {
  height: 45px !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.2) !important;
  outline: none !important;
  color: #40414a !important;
  font-size: 0.9rem;
}

.register-wrapper .input-field {
  position: relative !important;
  margin-bottom: 20px !important;
}

.register-wrapper .input {
  height: 45px !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.2) !important;
  outline: none !important;
  color: #40414a !important;
  padding-right: 40px;
  /* Make space for the eye icon */
}

.register-wrapper .input-box .input-field label {
  position: absolute !important;
  top: -8px !important;
  left: 0 !important;
  pointer-events: none !important;
  transition: .5s !important;
}

.register-wrapper .input-field input:focus~label,
.register-wrapper .input-field input:valid~label {
  font-size: 13px !important;
  color: #5d5076 !important;
}

.register-wrapper .input-field .input:focus,
.register-wrapper .input-field .input:valid {
  border-bottom: 1px solid var(--black-color) !important;
}

.register-wrapper .eye {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #40414a;
}


.register-wrapper .submit {
  border: none !important;
  outline: none !important;
  height: 45px !important;
  background: var(--primary-color) !important;
  border-radius: 5px !important;
  transition: .4s !important;
  width: 100% !important;
}

.register-wrapper .submit:hover {
  background: var(--primary-color) !important;
  color: #fff !important;
}

.register-wrapper .signin {
  text-align: center !important;
  font-size: small !important;
  margin-top: 25px !important;
}

.register-wrapper span a {
  text-decoration: none !important;
  font-weight: 700 !important;
  color: #000 !important;
  transition: .5s !important;
}

.register-wrapper span a:hover {
  text-decoration: underline !important;
  color: #000 !important;
}

@media (width < 999px) {
  .register-wrapper .side-image {
    min-height: 200px !important;
    height: 200px !important;
  }

  .register-wrapper .row {
    flex-direction: column !important;
  }

  .register-wrapper .side-image {
    display: none !important;
  }

  .login-wrapper .row {
    box-shadow: inherit !important;
  }

  .login-wrapper .main {
    align-items: inherit;
  }
}

@media (width < 999px) {
  .register-wrapper .col-md-6 {
    flex: 0 0 50%;
    width: 100%
  }
}

.input-group {
  height: 45px !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.2) !important;
  outline: none !important;
  color: #40414a !important;
  padding-right: inherit;
}

.right-n5 {
  right: -5px;
}

.countdown-timer {
  font-size: 1.2em;
  font-weight: bold;
  color: #dc3545;
}

.lockout-message {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
}


.register-wrapper .select-register-input {
  height: 45px !important;
  width: 100% !important;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 20%) !important;
  border-radius: 0;
  background: transparent;
  padding-left: 0;
  font-size: inherit;
  appearance: none;
  box-shadow: none;
  outline: none !important;
  color: #40414a !important;
  font-size: 0.85rem;
}

.register-wrapper .form-column-scroll {
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 40%) rgba(0, 0, 0, 10%);
  scrollbar-gutter: stable both-edges;
}

.register-wrapper .form-column-scroll::-webkit-scrollbar {
  width: 8px;
}

.register-wrapper .form-column-scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 8%);
  border-radius: 4px;
}

.register-wrapper .form-column-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 40%);
  border-radius: 4px;
}


/* Ensure applicant form labels remain black */
  .register-wrapper .input-box .input-field label {
    color: #000 !important;
  }

  .register-wrapper .input-field input:focus ~ label,
  .register-wrapper .input-field input:valid ~ label,
  .register-wrapper .input-field select:focus ~ label,
  .register-wrapper .input-field textarea:focus ~ label {
    color: #000 !important;
  }

  /* Password visibility toggle positioning */
  .register-wrapper .input-field .see-password-btn {
    position: absolute;
    right: 0;
    bottom: -0.1rem;
    background: transparent !important;
    border: none !important;
    padding: 0;
    width: 2rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .register-wrapper .input-field .see-password-btn:focus {
    outline: none;
    box-shadow: none;
  }

  .register-wrapper .input-field .see-password-btn i {
    font-size: 1rem;
    line-height: 1;
  }

  .register-wrapper .input-field input[type="password"] {
    padding-right: 2.5rem;
  }

  .register-wrapper .input-field .password-required {
    top: 0.3rem;
    right: 2.25rem;
    transform: none;
  }

  .register-wrapper .select-register-input {
  height: 45px !important;
  width: 100% !important;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 20%) !important;
  border-radius: 0;
  background: transparent;
  padding-left: 0;
  font-size: inherit;
  appearance: none;
  box-shadow: none;
  outline: none !important;
  color: #40414a !important;
  font-size: 0.85rem;
}

.register-wrapper .form-column-scroll {
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 40%) rgba(0, 0, 0, 10%);
  scrollbar-gutter: stable both-edges;
}

.register-wrapper .form-column-scroll::-webkit-scrollbar {
  width: 8px;
}

.register-wrapper .form-column-scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 8%);
  border-radius: 4px;
}

.register-wrapper .form-column-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 40%);
  border-radius: 4px;
}


/* Ensure applicant form labels remain black */
  .register-wrapper .input-box .input-field label {
    color: #000 !important;
  }

  .register-wrapper .input-field input:focus ~ label,
  .register-wrapper .input-field input:valid ~ label,
  .register-wrapper .input-field select:focus ~ label,
  .register-wrapper .input-field textarea:focus ~ label {
    color: #000 !important;
  }

  /* Password visibility toggle positioning */
  .register-wrapper .input-field .see-password-btn {
    position: absolute;
    right: 0;
    bottom: -0.1rem;
    background: transparent !important;
    border: none !important;
    padding: 0;
    width: 2rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .register-wrapper .input-field .see-password-btn:focus {
    outline: none;
    box-shadow: none;
  }

  .register-wrapper .input-field .see-password-btn i {
    font-size: 1rem;
    line-height: 1;
  }

  .register-wrapper .input-field input[type="password"] {
    padding-right: 2.5rem;
  }

  .register-wrapper .input-field .password-required {
    top: 0.3rem;
    right: 2.25rem;
    transform: none;
  }