/* Custom Scrollbar */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

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

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

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #98234b;
}
/* Custom Scrollbar */

:root {
  --input-padding-x: 1.5rem;
  --input-padding-y: 0.75rem;
}

.card-signin {
  border: 0;
  border-radius: 1rem;
  /* box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1); */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

input:focus,
select:focus,
button:focus {
  outline: none;
}

/* Change the white to any color ;) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.card-signin .card-title {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: #961e47;
  font-weight: 600;
}

.card-signin .card-body {
  padding: 2rem;
}

/* Input focus */
.form-control:focus {
  box-shadow: none;
  border: 2px solid #961e47;
  

}


.form-signin {
  width: 100%;
}

.form-signin .btn {
  font-size: 80%;
  border-radius: 5rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  padding: 1rem;
  transition: all 0.2s;
}

button:focus {
  outline: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 2rem;
  border: 2px solid transparent;
  padding: 10px 25px;
  width: 100%;
  color: #495057;
  outline: none;
  resize: none;
}

select:focus {
  border: 2px solid #961e47;
}

.form-label-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-label-group input {
  height: auto;
  border-radius: 2rem;
}

.form-label-group > input,
.form-label-group > label {
  padding: var(--input-padding-y) var(--input-padding-x);
}

.form-label-group > label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 0;
  line-height: 1.5;
  color: #495057;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: all 0.1s ease-in-out;
}

.form-label-group input::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group input::placeholder {
  color: transparent;
}

.form-label-group input:not(:placeholder-shown) {
  padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
  padding-bottom: calc(var(--input-padding-y) / 3);
}

.form-label-group input:not(:placeholder-shown) ~ label {
  padding-top: calc(var(--input-padding-y) / 3);
  padding-bottom: calc(var(--input-padding-y) / 3);
  font-size: 12px;
  color: #777;
}

/* Fallback for Edge
-------------------------------------------------- */
@supports (-ms-ime-align: auto) {
  .form-label-group > label {
    display: none;
  }
  .form-label-group input::-ms-input-placeholder {
    color: #777;
  }
}

/* Fallback for IE
    -------------------------------------------------- */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .form-label-group > label {
    display: none;
  }
  .form-label-group input:-ms-input-placeholder {
    color: #777;
  }
}

/* Signup btn */

.btn {
  background-color: #961e47;
  color: white;
  margin-top: 30px;
  width: 40%;
}

.btn:hover {
  color: white;
}

/* Footer */

footer {
  width: 100%;
  text-align: center;
  height: 80px;
  background-color: #fcd5ce;
}

.dropdown .dropdown-menu a:hover {
  color: #fff;
  background-color: #961e47;
  border-color: #fff;
}

/* Modal btn */
#modal-btn {
  padding: 5px;
  border-radius: 10px;
  width: 100%;
  height: 47px;
  background-color: white;
  color: black;
  margin-top: 10px;
  border: 2px solid #e9afa3;
  box-shadow: none;
}

#modal-btn:focus {
  box-shadow: none;
  border: 2px solid #961e47;
}

#preloader {
	position: fixed;
	height : 100vh;
	z-index : 100;
	text-align: center;
	background: white url('/images/preloader.gif')center center no-repeat;
}