html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

/* * {
  outline: 2px solid red;
} */


/* LOGIN FORM */
.form-signin {
  max-width: 330px;
  padding: 1rem;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* TOAST MESSAGE */
.toast {
  position: fixed;
  top: 10px;
  transform: translateX(50%);
  right: 50%;
  z-index: 1000;
  display: none;
}

.toast-header {
  color: white;
}

.toast-header.success {
  background-color: #28a745; /* bootstrap danger color hex code */
}

.toast-header.failure {
  background-color: #dc3545; /* bootstrap danger color hex code */
}

.nav-item a{
  color: black;
}

.nav-item .active {
  color: #0d6efd; /* bootstrap primary color hex code */
}

.bottom-shadow {
  box-shadow: 0 8px 5px -5px rgba(0, 0, 0, 0.1); /* Adjust values as needed */
}

#profile_image {
  --image-size: 150px;
  width: var(--image-size);
  height: var(--image-size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  outline: 3px solid #0d6efd;
}

#profile_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alert {
  transition: all .5s ease-in-out;
}