@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;1,700&family=Playfair+Display:wght@400;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

p {
  margin-top: 0;
}

a {
  color: #6D6D6D;
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: #0A99B0;
  text-decoration: underline;
}

input,
button,
select,
optgroup {
  font-family: inherit;
}

.login {
  --ff-alt: 'Playfair Display', serif;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #6D6D6D;
  background: no-repeat center / cover;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: #262626;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  text-transform: capitalize;
  outline: 0;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.btn:hover,
.btn:focus,
.btn:active {
  outline: 0;
  text-decoration: none;
}

.btn--primary {
  color: #fff;
  background-color: #0A99B0;
  border-color: #0A99B0;
}

.btn--primary:hover,
.btn--primary:focus {
  color: #fff;
  background-color: #262626;
  border-color: #262626;
}

.btn--back {
  position: fixed;
  top: 50px;
  left: 50px;
  z-index: 900;
  padding: 0;
}

.btn--back .btn__img {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #fff;
  background-color: #53B7C7;
  border-radius: 50%;
  transition: color .2s ease, background-color .2s ease;
}

.btn--back .btn__img svg {
  width: 25px;
  height: auto;
}

.btn--back .btn__text {
  font-weight: 400;
  color: #959595;
}

.btn--back:hover .btn__img,
.btn--back:focus .btn__img {
  color: #fff;
  background-color: #262626;
}

@media (max-width: 767.98px) {
  .btn--back {
    top: 10px;
    left: 20px;
  }

  .btn--back .btn__img {
    width: 35px;
    height: 35px;
  }

  .btn--back .btn__text {
    display: none;
  }
}

.login__container {
  display: block;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .login__container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .login__container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .login__container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .login__container {
    max-width: 1140px;
  }
}

@media (min-width: 1600px) {
  .login__container {
    max-width: 1400px;
  }
}

.login__row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
  min-height: 100vh;
  align-items: center;
  justify-content: flex-end;
  padding-top: 50px;
  padding-bottom: 50px;
}

.login__col {
  flex-shrink: 0;
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}

@media (min-width: 576px) {
  .login__col {
    flex: 0 0 90%;
    max-width: 90%;
  }
}

@media (min-width: 768px) {
  .login__col {
    flex: 0 0 70%;
    max-width: 70%;
  }
}


@media (min-width: 1200px) {
  .login__col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1600px) {
  .login__col {
    flex: 0 0 45%;
    max-width: 45%;
  }
}


.block {
  display: block;
  padding: 50px;
  text-align: center;
  background-color: #fff;
}

@media (max-width: 767.98px) {
  .block {
    padding: 20px;
  }
}

.block__logo {
  max-width: 100%;
  width: 200px;
  height: auto;
  margin-bottom: 40px;
}

@media (max-width: 767.98px) {
  .block__logo  {
    width: 160px;
  }
}

.block__title {
  display: block;
  text-align: center;
  margin-bottom: 40px;
  font-family: var(--ff-alt);
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: #53B7C7;
}

@media (max-width: 991.98px) {
  .block__title  {
    font-size: 36px;
  }
}

.form {
  margin-bottom: 5px;
  text-align: left;
}

.form__field {
  display: block;
  width: 100%;
  padding: 8px 12px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: #262626;
  background-color: #fff;
  border: 1px solid #DDDDDD;
  border-radius: 0;
  outline: 0;
  transition: border-color .2s ease;
}

.form__field::placeholder {
  color: #6D6D6D;
}

.form__field:focus {
  border-color: #0A99B0;
}

.form--append {
  position: relative;
}

.form--append .form__field {
  padding-right: 40px;
}

.form--append .form__icon {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 18px;
  height: 18px;
  font-size: 18px;
  line-height: 1;
}

.btn--submit {
  min-width: 200px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.block__text {
  color: #6D6D6D;
}

.block__text:last-of-type {
  margin-bottom: 0;
}

.block__link {
  color: #262626;
  text-decoration: none;
  transition: color .2s ease, text-decoration .2s ease;
}

.block__link:hover,
.block__link:focus {
  color: #0A99B0;
  text-decoration: underline;
}

.text-capitalize {
    text-transform: capitalize !important
}
.text-danger {
    color: #dc3545!important;
}

.select2-container--default .select2-selection--single {
   height: 38px !important;
 }

:focus-visible {
    outline: 0;
}

   .select2-container--default .select2-selection--single .select2-selection__arrow {
     top: 6px !important;
   }

   .select2-container--default .select2-selection--single .select2-selection__rendered {
     margin-top: 4px;
   }

 .select2-container {
   width: 100% !important;
 }

 .select2-container--default.select2-container--disabled .select2-selection--single {
   background-color: #ddd !important;
 }
 .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 65%);
}

.select2-container.select2-container--default {
    width: -webkit-fill-available !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #11163c transparent transparent transparent !important;
    border-width: 6px 5px 0 5px !important;
    margin-left: -10px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #11163c transparent !important;
    border-width: 0 5px 6px 5px !important;
    margin-left: -10px !important;
}
.select2-container--default .select2-selection--single {
    border: 1px solid #ddd !important;
    border-radius: 0 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #0A99B0 !important;
    color: white;
}
.successpopup .close{
    padding: 2px 12px;
    font-size: 25px;
    line-height: 35px;
    border:1px solid #0A99B0;
}
.successpopup .close:hover{
    border:1px solid #000;
}