.login-page {
  background-image: url("../bg.jpg");
}

a {
  color: #dc3545;
}
a:hover {
  color: #dc3545;
}

.bulk-action-tab .nav-link.active .bs-stepper-circle {
  background-color: #dc3545;
}
.bulk-action-tab .nav-link.active .bs-stepper-label {
  color: #dc3545;
}
.bulk-action-tab .nav-link .bs-stepper-label {
  color: #6c757d;
}
.bulk-action-tab .tab-content {
  display: flex;
}
.bulk-action-tab .tab-content > .tab-pane {
  display: block;
  visibility: hidden;
  margin-right: -100%;
  width: 100%;
}
.bulk-action-tab .tab-content > .active {
  visibility: visible;
}

.select2-container .select2-selection--single {
  border: 1px solid #ced4da !important;
  padding: 0.375rem 0.75rem !important;
  height: calc(2.25rem + 2px) !important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: unset !important;
}

.uploader {
  display: block;
  clear: both;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
}
.uploader label {
  float: left;
  clear: both;
  width: 100%;
  padding: 2rem 1.5rem;
  text-align: center;
  background: #fff;
  border-radius: 7px;
  border: 3px dotted #eee;
  transition: all 0.2s ease;
  user-select: none;
}
.uploader label:hover {
  border-color: #dc3545;
}
.uploader label.hover {
  border: 3px dotted #dc3545;
  box-shadow: inset 0 0 0 6px #eee;
}
.uploader label #file-upload-btn {
  color: #dc3545;
}
.uploader label .alert {
  font-weight: 400;
}
.uploader input[type=file] {
  display: none;
}

.upload-with-preview {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 250px;
  margin: auto;
}
.upload-with-preview #file-input {
  display: none;
}
.upload-with-preview img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.upload-with-preview label {
  cursor: pointer;
  color: #6c757d !important;
  display: block;
  margin-top: 0.25rem;
  font-size: 80%;
  font-weight: 400 !important;
}
.upload-with-preview label:hover {
  color: #dc3545 !important;
}

body {
  background: #f8f9fa;
  height: 100vh;
  margin: 0;
}

.login-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.left-section {
  background-color: #ffffff;
  background-image: url("{{ asset('student-login-bg.jpg') }}");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  color: #cd281f;
  display: flex;
  justify-content: center;
  align-items: end;
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 20px;
}
.left-section p {
  font-size: 12px;
}

.right-section {
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
  width: 100%;
  height: 100%;
}
.right-section img {
  max-height: 100px;
  margin-bottom: 20px;
}

.login-form {
  width: 100%;
  max-width: 400px;
}

@media (min-width: 768px) {
  .login-container {
    flex-direction: row;
  }
  .left-section {
    flex: 1;
    height: auto;
  }
  .right-section {
    flex: 1;
    max-width: none;
  }
  .right-section img {
    max-height: 75px;
    margin-bottom: 30px;
  }
}
.show-password span {
  cursor: pointer;
}

label.required::after {
  content: "*";
  font-weight: 700;
  padding-left: 4px;
  color: rgb(196, 67, 87);
  display: inline-block;
}

/*# sourceMappingURL=app.css.map */
