body {
  font-family: "Roboto", sans-serif;
  background-color: #000000;
  color: rgba(255, 255, 255, 0.85);
}

.text--base {
  color: goldenrod;
}

.login-section {
  /* height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/signbg.jpg");
  background-size: cover;
  background-position: center;
}

a {
  color: white;
}

.login-area {
  background-color: #000000;
  padding: 50px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
}

.cmn-btn {
  background-color: #d29001;
  color: #363636;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  width: 100%;
}

.cmn-btn:hover {
  background-color: #d29001;
}

.input-group-text {
  background-color: #d29001;
  color: #363636;
  z-index: 9;
}
.input-group {
  position: relative;
  display: flex
;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  margin-bottom: 13px;
}
.form-control {
  background-color: #020c25;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.21);
}

/* Media queries for responsiveness */
@media (max-width: 992px) {
  .login-section {
    padding: 0px;
  }

  .login-area {
    padding: 30px;
    max-width: 100%;
  }

  .login-area h2 {
    font-size: 1.5rem;
  }

  .cmn-btn {
    padding: 10px 15px;
  }
}

@media (max-width: 768px) {
  .login-section {
    flex-direction: column;
  }

  .login-area {
    padding: 20px;
  }

  .login-area h2 {
    font-size: 1.2rem;
    text-align: center;
  }

  .login-area .d-flex.justify-content-between {
    flex-direction: column;
    align-items: center;
  }

  .login-area .btn-warning {
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .login-area {
    padding: 15px;
    margin: 12px 0px;
  }

  .login-area h2 {
    font-size: 1rem;
  }

  .cmn-btn {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .input-group-text {
    font-size: 0.9rem;
  }
}


.select2-container .select2-selection--single {
  background-color: #020c25 !important;
  color: white !important;
  border: 1px solid #020c25 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: white !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  background-color: #020c25 !important;
}

.select2-dropdown {
  background-color: #020c25 !important;
  border: 1px solid #020c25 !important;
}

.select2-results__option {
  color: white !important;
  background-color: #020c25 !important;
}

.select2-results__option--highlighted {
  background-color: #020c25 !important;
}

.select2-container .select2-selection--single .select2-selection__clear {
  color: white !important;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 39px !important;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container {
  width: 239px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 37px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  background-color: #020c25 !important;
}