@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

main {
  background-image: url(../imgs/bg-overlay.png);
  background-attachment: fixed;
  background-size: contain;
}

a {
  color: #F6B93B;
}

.btn-primary {
  background-color: #F6B93B;
}

.kpy {
  padding: 80px 0;
}

.width-100 {
  width: 100%;
}

/* scroll */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
}

::-webkit-scrollbar-thumb {
  background: #F6B93B;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4A69BD;
}

.bg-primary {
  background-color: #4A69BD !important;
}

/* nav start */
header {
  padding-top: 142px;
}

.navbar {
  transition: all 500ms;
}
.navbar .Logo {
  transition: all 500ms;
}

.nav-item a {
  color: #fff;
  transition: all 500ms;
}
.nav-item a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #F6B93B;
  transition: all 500ms;
  margin: 0 auto;
}
.nav-item a:hover::after {
  width: 100%;
}
.nav-item a:hover {
  color: #F6B93B;
}
.nav-item a.active {
  color: #F6B93B !important;
}
.nav-item a.active::after {
  width: 100%;
}

/* Hero start */
.hero {
  overflow: hidden;
  background-color: #fff;
}
.hero .contact-con {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.hero .contact-con .title {
  padding: 50px 0 0 40px;
}
.hero .contact-con .title h2 {
  color: #F6B93B;
}
.hero .contact-con .form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 30px 40px;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
  transform: rotateX(-10deg);
  transition: all 0.3s ease-in-out;
  animation: form-animation 0.5s ease-in-out;
}
@keyframes form-animation {
  from {
    transform: rotateX(-30deg);
    opacity: 0;
  }
  to {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
.hero .contact-con .input, .hero .contact-con textarea {
  padding: 15px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  background-color: transparent;
  transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transform-style: preserve-3d;
  color: #4A69BD;
  border: 0 solid #F6B93B;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.hero .contact-con .input::-moz-placeholder, .hero .contact-con textarea::-moz-placeholder {
  color: #5d78c4;
}
.hero .contact-con .input::placeholder, .hero .contact-con textarea::placeholder {
  color: #5d78c4;
}
.hero .contact-con .input:hover,
.hero .contact-con .input:focus, .hero .contact-con textarea:hover, .hero .contact-con textarea:focus {
  background-color: transparent;
  transform: scale(1.05) rotateY(20deg);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  outline: none;
}
.hero .contact-con button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #F6B93B;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform: rotateX(-10deg);
  transition: all 0.3s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.hero .contact-con button:hover {
  background-color: #4A69BD;
  font-size: 17px;
  transform: scale(1.05) rotateY(20deg) rotateX(10deg);
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.hero .form_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 30px 30px 30px 30px;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.062);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero .form_main:hover:before {
  left: -500px;
}
.hero .form_main:before {
  position: absolute;
  content: "";
  width: 380px;
  height: 360px;
  background-color: #F6B93B;
  transform: rotate(45deg);
  left: -200px;
  bottom: 30px;
  z-index: -1;
  border-radius: 30px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.082);
  transition: all 800ms;
}
@media (max-width: 992px) {
  .hero .form_main:before {
    left: -240px;
  }
}
.hero .heading {
  font-size: 2em;
  color: #2e2e2e;
  font-weight: 700;
  margin: 5px 0 10px 0;
  z-index: 2;
}
.hero .inputContainer {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin-bottom: 20px;
}
.hero .inputContainer .valid-response {
  position: absolute;
  bottom: -20px;
  left: 10px;
}
.hero .inputIcon {
  position: absolute;
  left: 3px;
}
.hero .inputField, .hero select {
  width: 100%;
  height: 30px;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid rgb(173, 173, 173);
  margin: 10px 0;
  color: black;
  font-size: 1.2em;
  font-weight: 500;
  box-sizing: border-box;
  padding-left: 30px;
}
.hero .register-form .inputField {
  padding-left: 10px;
}
.hero .inputField:focus {
  outline: none;
  border-bottom: 2px solid #4A69BD;
}
.hero .inputField::-moz-placeholder {
  color: rgb(80, 80, 80);
  font-size: 1em;
  font-weight: 500;
}
.hero .inputField::placeholder, .hero select {
  color: rgb(80, 80, 80);
  font-size: 1em;
  font-weight: 500;
}
.hero .select-wrapper {
  position: relative;
  width: 100%;
}
.hero .select-wrapper::after {
  content: "▾"; /* Downward arrow */
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none; /* Make sure clicks pass through to the select */
  color: #4A69BD; /* Arrow color */
  transition: all 500ms;
}
.hero .select-wrapper select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-bottom: 1px solid black;
  width: 100%;
  padding: 2px 10px;
  border: none;
  border-bottom: 2px solid rgb(173, 173, 173);
  background-color: transparent;
  margin: 10px 0;
}
.hero .select-wrapper select:focus {
  border: none;
  outline: none;
  border-bottom: 2px solid #4A69BD;
  background-color: transparent;
}
.hero .select-wrapper:focus-within::after {
  transform: translateY(-50%) rotate(180deg);
}
.hero #button {
  z-index: 2;
  position: relative;
  width: 100%;
  border: none;
  background-color: #4A69BD;
  height: 40px;
  color: white;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 10px;
  cursor: pointer;
}
.hero #button:hover {
  background-color: #5d78c4;
}
.hero .register-btn {
  max-width: 50%;
  transition: all 500ms;
}
.hero .register-btn:hover {
  max-width: 60%;
}
.hero .forgotLink {
  z-index: 2;
  font-size: 1em;
  font-weight: 500;
  color: #F6B93B;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 20px;
  transition: all 500ms;
}
.hero .forgotLink:hover {
  text-decoration: underline;
  color: #4A69BD;
}
.hero .curved {
  width: 100%;
  bottom: -30px;
}

/* footer start */
footer {
  padding: 40px 0 0;
  background-color: #4A69BD;
  color: #fff;
}
footer a {
  color: #fff;
  margin: 2px;
  font-size: 14px;
  text-decoration: none;
  transition: all 500ms;
}
footer a:hover {
  color: #F6B93B;
}
footer .f-nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #F6B93B;
  transition: all 500ms;
  margin: 0 auto;
}
footer .f-nav a:hover::after {
  width: 100%;
}
footer div.up {
  position: fixed;
  right: 3%;
  bottom: 3%;
  opacity: 0;
  transition: all 500ms;
  cursor: pointer;
  z-index: 99;
}
footer div.up img {
  border-radius: 50%;
  width: 35px;
  border: 2px solid transparent;
  transition: all 500ms;
}
footer div.up img:hover {
  border: 2px solid #F6B93B;
}
footer .copyright p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-top: 1px solid gainsboro;
}
footer .social img, footer .up img {
  transition: all 500ms;
}
footer .social img:hover, footer .up img:hover {
  transform: translatey(-5px) scale(1.1);
}

@media (max-width: 992px) {
  footer .f-nav {
    text-align: center;
  }
}
/* footer end *//*# sourceMappingURL=signin.css.map */