/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */
html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0; /* Reset default margin */
}

main {
  flex: 1;
  padding-top: 40px !important; /* Space below navbar */
}

.container {
  width: auto;
  padding: 0 15px;
}

/* CSS signin form */
.form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
}

.form-signin .checkbox {
  font-weight: 400;
}

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

.form-signin input[type="text"] {
  margin-bottom: 0px;
  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;
}

/* CSS move to top */
#moveToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 0;
  margin-right: 20px;
  /* Adjust the margin from the right border */
  display: none;
  /* Hidden by default */
  z-index: 1000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  display: flex;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* CSS circle image */
.profile-circle-image-150 img {
  width: 150px;
  height: 150px;
  border-radius: 150px;
}

.vv img {
  transition: all 0.3s ease;
  cursor: pointer;
}

.vv img:hover {
  opacity: 0.8;
  box-shadow: 0px 0px 5px 8px rgba(0, 0, 0, 0.08);
}

/* Hide arrows/spinners in number inputs for Chrome, Safari, Edge, and other WebKit browsers */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide arrows/spinners in number inputs for Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}