/* logo image css */

.bronest-logo {
  width: 100%;
}

.error-msg {
  color: red;
}

.alert {
  background-color: #f8d7da;
  color: #721c24;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
}

/* login form css */
.justify-center {
  justify-content: right;
}

/* public/styles.css */
.toast-container {
  position: fixed;
  width: 290px;
  top: 63px;
  right: 25px;
  z-index: 1000;
}

.toast {
  display: none;
  background-color: green;
  color: #fff;
  padding: 16px 26px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.password-container{
  position: relative;
}
.password-container input[type="password"],
.password-container input[type="text"]{
  width: 100%;
  box-sizing: border-box;
}

.fa-eye {
  position: absolute;
  top: 60%;
  right: 4%;
  cursor: pointer;
  color: lightgray;
}


/* width */
::-webkit-scrollbar {
  width: 0.375rem !important;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.process_loader {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  margin: -76px 0 0 -76px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #4361ee;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}