@media (max-width: 768px) {

  .main-content {
    margin: 0;
    padding: 10px;
  }

}


.content {
  display: flex;
}

.content.full {
  max-width: 100%;
}

.form-container {
  width: 100%;
  height: 100vh;
  /* max-height: 800px; */
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}

.form-container.verify {
  max-height: fit-content;
  overflow: visible;
  height: auto;
  padding-inline: 0px;
  padding-top: 15px;
}


.form-container.verify {
  justify-content: center;
}



.form-image-container {
  height: 100%;
  background-color: rgb(253, 253, 253);
  position: relative;
  transition: 0.15s ease;
}

body.dark,
body.dark .form-container,
body.dark .form-image-container {
  background-color: rgb(60, 60, 60);
}

body.dark .form-container {
  transition: 0.3s ease, background-color 0s 0.3s;
}

.form-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(100%);
}

.form-side-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  padding: 3vw;
  text-align: center;
  background: rgba(255, 248, 211, 0.751);
  background: rgb(119, 65, 158);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  font-weight: bold;
  color: rgba(255, 255, 255, 0);
}


.form {
  display: flex;
  position: relative;
  z-index: 10;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 0px 20px 20px 20px;
  background-color: rgb(253, 253, 253);
  box-shadow: -1px 0px 2px rgba(0, 0, 0, 0.1);
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: none;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease, border-radius 0.3s 0.3s;
}

body.dark .form {
  background-color: #333;
  border-radius: 30px 0px 0px 0px;
  transition: all 0.3s ease, border-radius 0.3s 0.3s;
}

.form.verify {
  min-width: 380px;
  min-height: 400px;
  padding-inline: 30px;
  flex: 0;
  height: fit-content;
  padding-bottom: 40px;
  border-radius: 20px;
  box-shadow: 0px 1.5px 3px rgba(0, 0, 0, 0.1);
}

.form.change-password {
  padding-bottom: 20px;
}

.form.verify .input-box {
  padding: 15px;
}

.form.verify .message-container {
  margin: 20px 0px -50px 0px;
}

.form.verify .message-container.visible {
  margin: 30px 0px -80px 0px;
  padding: 10px 15px 10px 20px;
}

.form.verify .registration-link-container {
  justify-content: center;
}

.form.verify .form-title,
p.verify {
  font-size: 18px;
  margin-bottom: 40px;
}

.form-description {
  font-size: 13px;
  color: #333;
  margin-bottom: 0px;
  background-color: rgb(251, 251, 251);
  padding: 10px 20px;
  border-radius: 10px;
  border: solid rgb(229, 229, 229) 1px;
}






.modal-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  color: #333;
}

.modal-content .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}


.message-container {
  position: sticky;
  top: 10px;
  width: 100%;
  z-index: 199;
  font-size: 12px;
  padding: 0px 0px;
  text-align: center;
  color: rgb(92, 92, 92);
  margin: 20px 0px -40px 0px;
  transition: all 0.3s ease;
  border-radius: 17px;
  background-color: rgb(253, 253, 253);
  border: solid rgba(229, 229, 229, 0.799) 1px;
  pointer-events: none;
}

.message-container.visible {
  padding: 12px 12px 12px 16px;
  margin: 20px 0px -80px 0px;
  transition: 0.3s ease;
  pointer-events: all;
}


.message-container.admin {
  position: fixed;
  top: 20px;
  max-width: 340px;
  width: 100%;
  margin-inline: auto;
}

.message-container.error {
  background-color: rgb(255, 96, 96);
  border: solid rgba(229, 229, 229, 0) 1px;
}

.message-container.success {
  background-color: rgb(98, 205, 98);
  border: solid rgba(229, 229, 229, 0) 1px;
}

.message-container.info,
.form-description.info {
  border: solid rgb(229, 229, 229) 1px;
  background-color: rgb(255, 253, 220);
}


.message-container.info .close {
  background-color: rgba(255, 255, 255, 0);
  border: solid rgb(215, 215, 215) 1px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

.message-container.info .close:hover {
  background-color: rgb(249, 249, 249);
}

.message-container.error .close,
.message-container.success .close {
  border: solid rgba(255, 255, 255, 0.2) 1px;
}

.message-container.error .close:hover,
.message-container.success .close:hover {
  border: solid rgba(255, 255, 255, 0.3) 1px;
}

.message-container.info .close {
  border: solid rgb(220, 220, 220) 1px;
}

.message-container.error .notification-title,
.message-container.error .notification-message,
.message-container.success .notification-title,
.message-container.success .notification-message {
  color: white;
}

.message-container.info .notification-title,
.message-container.info .notification-message {
  color: #333;
}


.notification-title {
  font-size: 11px;
  font-weight: 500;
  color: #333;
  text-align: left;
}

.notification-message {
  font-size: 13px;
  color: #333;
  text-align: left;
}

.close {
  min-height: 32px;
  min-width: 32px;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  padding-top: 2px;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  border: solid rgba(255, 255, 255, 0.2) 1px;
  transition: 0.2s ease;
}

.close:hover {
  background-color: rgba(255, 255, 255, 0.05);
}


.close span {
  transform: rotateZ(270deg);
  font-weight: lighter;
  transition: all 0.2s ease, transform 1s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%);
}

.message-container.visible .close span {
  transform: rotateZ(0deg);
}


.message-container.visible:hover .close span,
.close:hover span {
  transform: rotateZ(90deg);
}

.message-container.visible:active .close span,
.close:active span {
  transform: rotateZ(45deg);
}




.form-title {
  width: 100%;
  max-width: 350px;
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  color: #5e5e5e;
  margin-bottom: 20px;
  margin-top: 20px;
}



body.dark .form-title {
  color: rgb(171, 172, 172);
}



.input-label {
  width: 100%;
  max-width: 350px;
  font-size: 13px;
  text-align: left;
  justify-content: left;
  margin-top: 22px;
  margin-bottom: 12px;
  font-weight: 500;
  color: #616161;
}

body.dark .input-label {
  color: rgb(163, 166, 163);
}



.input-box-container {
  position: relative;
  width: 100%;
  max-width: 350px;
}


.input-box-container::before {
  content: '';
  position: absolute;
  inset: 10px;
  z-index: 10;
  border: solid rgba(107, 0, 215, 0) 1.5px;
  border-radius: 30px;
  pointer-events: none;
  transition: all 0.3s ease, inset 1.2s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%);
}


.input-box-container:focus-within::before {
  border-color: rgba(107, 0, 215, 0.774);
  inset: -2px;
}

body.dark .input-box-container:focus-within::before {
  border-color: rgba(117, 0, 234, 0.7);
}




.input-box,
textarea,
select {
  width: 100%;
  max-width: 100%;
  padding: 13px;
  border-radius: 10px;
  border: solid rgba(0, 0, 0, 0.35) 1.5px;
  background-color: transparent;
  color: rgb(46, 46, 46);
  outline: solid rgba(102, 51, 153, 0) 1.5px;
  outline-offset: -10px;
  transition: 0.3s ease;
  font-size: 12px;
  transition: all 0.3s ease, outline-offset 1s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%);
}

textarea.input-box {
  border-radius: 15px;
}


.form.curved .input-box {
  border-radius: 40px;
  text-indent: 7px;
  border: solid rgba(21, 0, 63, 0.2) 1.5px;
  position: relative;
}

body.dark .input-box,
body.dark textarea,
body.dark select,
body.dark .form.curved .input-box,
body.dark .form.curved .form textarea,
body.dark .form.curved .form select {
  color: rgb(195, 199, 195);
  border-color: rgb(84, 84, 84);
}


.input-box:focus,
.input-box:focus-within,
.form.curved .input-box:focus,
.form.curved .input-box:focus-within {
  outline: solid rgb(184, 165, 223) 1.5px;
  outline-offset: 0px;
  border-color: rgb(255, 255, 255);
}


.input-box:active,
.input-box:has(:active) {
  outline-offset: 3px;
}


body.dark .input-box:focus,
body.dark .input-box:focus-within {
  border-color: rgb(51, 51, 51);
  outline: solid rgba(184, 165, 223, 0) 1.5px;
}




.input-box.verify {
  font-size: 17px;
  letter-spacing: 18px;
  text-align: center;
  font-weight: 500;
}

.input-box.verify::placeholder {
  font-size: 12px;
  letter-spacing: normal;
  text-align: left;
  font-weight: normal;
}

textarea {
  width: 100%;
  resize: none;
}


.error-message {
  font-size: 11px;
  color: rgb(176, 0, 32);
  font-weight: 500;
  margin-top: 5px;
}


.password-container {
  width: 100%;
  max-width: 350px;
  display: flex;
  align-items: center;
  position: relative;
}

.show-password-button {
  position: absolute;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 5px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s ease;
}

.show-password-button img {
  height: 18px;
  width: 18px;
  object-fit: contain;
}

body.dark .show-password-button img {
  filter: invert(0.8);
}

.hide-line {
  border-top: solid rgb(50, 50, 50) 2.5px;
  width: 24px;
  transform: rotateZ(45deg);
  position: absolute;
  border-radius: 2px;
  transition: 1s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%);
}

.hide-line.visible {
  width: 0px;
}

body.dark .hide-line {
  border-top-color: rgb(192, 192, 192);
}



.submit-button {
  max-width: 350px;
  width: 100%;
  height: 45px;
  min-height: 45px;
  font-size: 13px;
  border-radius: 50px;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: 500;
  margin-top: 20px;
  background-color: rgb(0, 0, 139);
  border: solid rgba(255, 255, 255, 0) 1.5px;
  transition: 0.3s ease;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-button:hover {
  background-color: rgba(0, 0, 139, 0.85);
  color: rgba(255, 255, 255, 0.95);
}

body.dark .submit-button {
  background-color: rgb(109, 0, 218);
}

body.dark .submit-button:hover {
  background-color: rgb(104, 0, 207);
}



.submit-button img {
  height: 14px;
  width: 14px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
}

.submit-button span,
.submit-button img {
  position: relative;
  z-index: 3;
  transition: all 0.3s ease, color 0.3s ease 0.2s, filter 0.3s ease 0.15s, transform 1.1s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%);
}

.submit-button:hover span {
  color: rgb(0, 0, 139);
}

body.dark .submit-button:hover span {
  color: rgb(119, 0, 255);
}

.submit-button:hover img {
  transform: rotateZ(90deg);
  filter: grayscale(0) brightness(1) invert(0);
}

body.dark .submit-button:hover img {
  filter: grayscale(0) brightness(120%) invert(0) saturate(480%) hue-rotate(27deg);
}

.submit-button:active img {
  transform: rotateZ(45deg);
}

.submit-button.no-rotate:hover img {
  transform: rotateZ(0deg);
}


.submit-button.login:hover img {
  transform: rotateZ(0deg);
}

.submit-button.login:active img {
  transform: rotateZ(0deg);
}




.submit-button::after {
  content: '';
  position: absolute;
  inset: 0px;
  z-index: 2;
  border-radius: 50px;
  border: solid 1.5px rgba(0, 0, 139, 0);
  pointer-events: none;
}

.submit-button::before {
  content: '';
  position: absolute;
  inset: 0px;
  right: 100%;
  z-index: 1;
  border-radius: 50px;
  background-color: rgb(255, 255, 255);
  transition: all 0.4s ease;
}

.submit-button:hover::before {
  right: 0px;
}

body.dark .submit-button::before {
  background-color: rgb(51, 51, 51);
}

.submit-button.secondary {
  background-color: #333;
}

.submit-button.secondary::after {
  border: solid 1.5px rgb(0, 0, 139);
}

.submit-button:disabled {
  cursor: not-allowed;
  background-color: rgba(0, 0, 139, 0.564);
}


.spinner {
  border: 2px solid rgba(255, 255, 255, 0.282);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 1s ease infinite;
  display: inline-block;
  transition: all 0.3s ease, border-top-color 0.3s ease 0.2s;
}

.submit-button:hover .spinner {
  border-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgb(0, 0, 139);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}





.forgot-password-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 350px;
  margin-top: 15px;
}


.forgot-password-link,
.remember-me-label {
  font-size: 12px;
  color: #555;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}

.remember-me-label {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 6px;
  position: relative;
}

body.dark .forgot-password-link,
body.dark .remember-me-label {
  color: #b5b5b5;
}


.remember-me-label:has(input) input {
  opacity: 0;
}

.remember-me-label:has(input) .remember-me-checkbox {
  height: 14px;
  width: 14px;
  border-radius: 10px;
  border: solid rgb(255, 255, 255) 1.5px;
  outline: solid rgba(0, 0, 116, 0.779) 1.5px;
  outline-offset: -1.5px;
  background-color: white;
  position: absolute;
  left: 0px;
  transform: scale(105%);
  pointer-events: none;
  transition: 0.3s ease;
}

.remember-me-label:has(:checked) .remember-me-checkbox {
  background-color: rgba(0, 0, 120, 0.699);
  outline-color: rgba(0, 0, 92, 0.671);
  outline-offset: 0px;
  transform: scale(90%);
}



.forgot-password-link:hover {
  text-decoration: underline;
}




.registration-link-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 65px;
  width: 100%;
  max-width: 350px;
  font-size: 12px;
  color: rgb(66, 66, 66);
  padding: 15px 20px;
  border-radius: 30px;
  background-color: rgb(251, 251, 251);
  transition: 0.3s ease;
}

body.dark .registration-link-container {
  color: rgb(133, 133, 133);
  background-color: rgb(49, 49, 49);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

.registration-link {
  color: rgb(92, 92, 92);
  text-decoration: none;
  border: none;
  position: relative;
}

body.dark .registration-link {
  color: rgb(188, 188, 188);
}

.registration-link::before {
  content: '';
  position: absolute;
  left: 0px;
  right: 100%;
  bottom: -1px;
  height: 1px;
  background-color: #555;
  border-radius: 5px;
  transition: all 0.3s ease, right 1.1s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%);
}

body.dark .registration-link::before {
  background-color: #999;
}


.registration-link:hover::before {
  right: 0px;
}

.registration-link-container button {
  font-size: 12px;
  background-color: transparent;
  cursor: pointer;
  margin-bottom: -3px;
}


.theme-button-container {
  position: absolute;
  top: 10px;
  left: 0px;
  right: -15px;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  pointer-events: none;
}


.theme-button {
  height: 38px;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid rgba(228, 228, 228, 0) 0.5px;
  border-radius: 30px;
  background-color: rgb(234, 234, 234);
  padding: 2px 2px 2px 15px;
  position: relative;
  pointer-events: all;
  cursor: pointer;

  box-shadow: 0px 1.5px 3px rgba(0, 0, 0, 0.1),
    0px 15px 100px rgba(0, 0, 0, 0.247);
  color: rgb(96, 96, 96);

  transition: all 0.3s ease, width 0.8s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%);
}

.theme-button:hover {
  width: 100px;
  box-shadow: 0px 1.5px 3px rgba(0, 0, 0, 0.1),
    0px 0px 100px rgb(0, 0, 0);
}

.theme-button:active {
  width: 105px;
}

body.dark .theme-button {
  background-color: rgb(160, 160, 160);
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.1),
    0px 10px 40px rgba(255, 255, 255, 0.3),
    0px 5px 60px rgba(255, 255, 255, 0.3),
    0px 10px 100px rgba(255, 255, 255, 1);
  color: rgb(60, 60, 60);
  color: rgb(250, 250, 250);
}

body.dark .theme-button:hover {
  box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.1),
    0px 0px 40px rgba(255, 255, 255, 0.1),
    0px 0px 60px rgba(255, 255, 255, 0.1),
    0px 0px 100px rgba(255, 255, 255, 0.3);
}


.theme-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  position: absolute;
  left: 15px;
  z-index: 1;
  transition: all 0.3s ease, left 0.2s ease 0.3s;
}

body.dark .theme-button span {
  left: calc(100% - 45px);
}

.theme-button img {
  height: 32px;
  width: 32px;
  padding: 8px;
  object-fit: contain;
  border-radius: 50%;
  background-color: rgb(253, 253, 253);
  /* border: solid rgb(210, 210, 210) 0.5px; */
  position: absolute;
  right: 2px;
  transform: rotateZ(0deg);
  z-index: 1;
  transition: all 0.3s ease, right 0.7s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%) 0.3s, transform 1s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%);
}

.theme-button img:hover {
  background-color: rgb(248, 248, 248);
}

body.dark .theme-button img {
  right: calc(100% - 34px);
  transform: rotateZ(270deg);
  background-color: rgb(215, 215, 215);
}



.form-footer {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}


.form-footer-element {
  padding: 7px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  font-weight: 500;
  margin-top: 35px;
  background-color: rgb(0, 0, 139);
  border-radius: 30px;
  /* border: solid rgb(241, 241, 241) 1px; */
  box-shadow: 0px 1.5px 3px rgba(0, 0, 0, 0.1);
  gap: 10px;
  transition: 0.3s ease;
  animation-name: copyright-animation;
  animation-timing-function: ease;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}


body.dark .form-footer-element {
  background-color: rgb(109, 0, 218);
}


.form-footer-element:nth-child(2) {
  animation-delay: 0.2s;
}

.form-footer-element img {
  height: 20px;
  width: 20px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
}

@keyframes copyright-animation {
  0% {
    transform: translateY(0px);
    animation-timing-function: ease;
  }

  50% {
    transform: translateY(-6px);
    animation-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
  }

  100% {
    transform: translateY(0px);
    animation-timing-function: ease;
  }
}



@media (max-width: 768px) {

  .form {
    width: 100%;
    padding-top: 40px;
  }

  body.dark .form {
    border-radius: 0px 0px 0px 0px;
  }

  .form.verify {
    min-width: 100%;
    min-height: 300px;
    padding-inline: 15px;
  }

  .form-title {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .message-container.visible {
    margin: 30px 0px -80px 0px;
  }


  .form.verify .message-container {
    margin-top: 40px;
  }

  .form.verify .message-container.success,
  .form.verify .message-container.error,
  .form.verify .message-container.info {
    margin-top: 20px;
  }

  .close {
    padding: 0px;
  }


  .input-box {
    padding-block: 16px;
    font-size: 13px;
  }

  .input-box.upload {
    padding-block: 12px;
  }

  .input-box.verify {
    font-size: 17px;
  }

  .show-password-button {
    right: 15px;
  }

  .submit-button {
    height: 52px;
  }

  .form-image-container {
    width: 0%;
  }


  .registration-link {
    margin-bottom: 0px;
  }

  .theme-button-container {
    position: fixed;
    top: 10px;
    bottom: auto;
    left: 0px;
    right: 0px;
  }


  .form-footer {
    padding: 12px 20px;
    left: auto;
  }

  .form-footer-element {
    padding: 16px 17px;
    border-radius: 23px;
    transition: background 0.3s ease 0.6s !important;
  }

  body.dark .form-footer-element {
    background-color: rgb(107, 1, 212);
  }

  .form-footer img {
    height: 25px;
    width: 25px;
  }

}

@media (min-width: 768px) {
  .form {
    flex: 1;
    max-width: 540px;
    min-width: 450px;
    height: 100%;
  }

  .form-image-container {
    flex: 2;
    height: 100%;
  }
}


.input-box:-webkit-autofill,
.input-box:-webkit-autofill:hover,
.input-box:-webkit-autofill:focus,
.input-box:-webkit-autofill:active {
  box-shadow: inset 300px 500px 0px #ebebeb;
  -webkit-text-fill-color: rgb(66, 66, 66);

}

body.dark .input-box:-webkit-autofill,
body.dark .input-box:-webkit-autofill:hover,
body.dark .input-box:-webkit-autofill:focus,
body.dark .input-box:-webkit-autofill:active {
  box-shadow: inset 300px 500px 0px #555555;
  -webkit-text-fill-color: rgb(200, 200, 200);
}






input[type="file"] {
  border-radius: 50px;
}

input[type="file"]::file-selector-button {
  background-color: rgb(0, 0, 139);
  color: rgb(255, 255, 255);
  border: none;
  padding: 9px 18px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 11px;
  cursor: pointer;
  margin-right: 15px;
  margin-left: 2px;
  transition: all 0.3s ease, transform 1s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%);
  font-family: 'G-Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

input[type="file"]::file-selector-button:hover {
  background-color: rgba(0, 0, 139, 0.861);
}

input[type="file"]::file-selector-button:active,
input[type="file"]:active::file-selector-button {
  transform: scale(0.92);
}