@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

/* font-family: 'Open Sans', sans-serif; font-family: 'Josefin Sans', sans-serif; */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  /* font-family: "Josefin Sans", sans-serif; */
  font-family: "Urbanist", sans-serif;
  letter-spacing: 1px;
  list-style: none;
}

:root {
  --white: #fff;
  --black: #000000;
  --green: #6ea502;
  --dark-blue: #0a578d;
  --lite-white: #f4f4f4;
  /* --lite-gray: #fafbfc; */
  --lite-gray: #f6f6f4;
  --lite-black: rgba(0, 0, 0, 70%);
  --primary: #6b59d3;
  --secondary: #bfc0c0;
  --white: #fff;
  --text-clr: #5b6475;
  --header-clr: #25273d;
  --next-btn-hover: #8577d2;
  --back-btn-hover: #8b8c8c;
}

.form-select:focus {
  box-shadow: none;
  border-color: #084876;
}

/* Login start  */
.carousel-inner {
  height: 100vh;
}
.carousel-inner img {
  height: 100vh;
}


.login-area {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
 border:none;
 padding:0 12px;
}

.card-header {
  background-color: transparent;
  border-bottom:none;
}
.card-header h2 {
  color: #0a578d;
  font-weight: 700;
  text-align: center;
}
.card-header h5 {
  color: #0000006b;
}

.card-body {
  padding: 10px 30px;
}

input,
textarea {
  background-color: transparent !important;
  padding: 0.6rem !important;
}

form label {
  margin: 0.6rem 0;
  font-weight: 600;
  font-size: 18px;
  color: #545965;
}

.form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #0a578d !important;
}

#login {
  font-weight: 500;
  margin-top: 20px;
  width: 100%;
  color: white;
  background-color: #0a578d;
  border: none;
}

#login:focus {
  box-shadow: none;
}
.password-area {
  position: relative;
}
#pass-visible {
  position: absolute;
  top: 57px;
  right: 15px;
}
#pass-visible i {
  color: #0000006b;
}
.sign-up p {
  color: #0000006b;
  font-weight: 500;
  font-size: 17px;
}

.sign-up a {
  text-decoration: none;
  color: #0a578d !important;
}

.sign-up a:hover {
  text-decoration: underline;
}

/* Login End  */

/* Signup Start */
.cont {
  background-color: #0a578d;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.wrapper {
  width: 750px;
  max-width: 100%;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  padding: 50px;
}

.wrapper .header {
  display: flex;
  justify-content: center;
}

.wrapper .header ul {
  display: flex;
}

.wrapper .header ul li {
  margin-right: 50px;
  position: relative;
}

.wrapper .header ul li:last-child {
  margin-right: 0;
}

.wrapper .header ul li:before {
  content: "";
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  left: 55px;
  width: 100%;
  height: 2px;
  background: var(--secondary);
}

.wrapper .header ul li:last-child:before {
  display: none;
}

.wrapper .header ul li div {
  padding: 5px;
  border-radius: 50%;
}

.wrapper .header ul li p {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--white);
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
}
.wrapper .header ul li.active:before {
  background: #0a578d;
}

.wrapper .header ul li.active p {
  background: #0a578d;
}

.wrapper .form_wrap {
  margin-bottom: 35px;
}

.wrapper .form_wrap h2 {
  color: #0a578d;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-weight: 600;
}

.wrapper .form_wrap .input_wrap {
  width: 350px;
  max-width: 100%;
  margin: 0 auto 20px;
}

.wrapper .form_wrap .input_wrap:last-child {
  margin-bottom: 0;
}

.wrapper .form_wrap .input_wrap label {
  display: block;
  margin-bottom: 5px;
}

.wrapper .form_wrap .input_wrap .input {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.wrapper .form_wrap .input_wrap input:focus {
  border-color: #0a578d !important;
  outline: none;
}

.wrapper .btns_wrap {
  width: 350px;
  max-width: 100%;
  margin: 0 auto;
}

.wrapper .btns_wrap .common_btns {
  display: flex;
  justify-content: center;
}

.wrapper .btns_wrap .common_btns.form_1_btns {
  justify-content: center;
}

.wrapper .btns_wrap .common_btns button {
  border: 0;
  padding: 12px 15px;
  background: #0a578d;
  color: var(--white);
  width: 135px;
  justify-content: center;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  transition: 0.5s ease;
  cursor: pointer;
}

.wrapper .btns_wrap .common_btns button.btn_back {
  background: var(--secondary);
}

.wrapper .btns_wrap .common_btns button.btn_next .icon {
  display: flex;
  margin-left: 10px;
}

.wrapper .btns_wrap .common_btns button.btn_back .icon {
  display: flex;
  margin-right: 10px;
}

.wrapper .btns_wrap .common_btns button.btn_next:hover,
.wrapper .btns_wrap .common_btns button.btn_done:hover {
  background: #084876;
}

.wrapper .btns_wrap .common_btns button.btn_back:hover {
  background: var(--back-btn-hover);
}

.modal_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}

.modal_wrapper .shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: 0.2s ease;
}

.modal_wrapper .success_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -800px);
  background: var(--white);
  padding: 50px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  transition: 0.5s ease;
}

.modal_wrapper .success_wrap .modal_icon {
  margin-right: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
}

.modal_wrapper.active {
  visibility: visible;
}

.modal_wrapper.active .shadow {
  opacity: 1;
}

.modal_wrapper.active .success_wrap {
  transform: translate(-50%, -50%);
}
/* Signup End */

@media all and (max-width: 520px) {
  .wrapper .header ul li:before {
    top: 38%;
    left: 39px;
    width: 140%;
  }
  .wrapper .header ul li p {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
  .wrapper .header ul li {
    margin-right: 30px;
  }
}
