html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.note {
  font-size: medium;
  overflow-y: auto;
  margin: 10px;
  border-top: 2px #258cfb;
}

.input {
  min-height: 400px;
}

.margin-top-bottom {
  margin-top: 10px;
  margin-bottom: 10px;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.password {
  min-width: 120px !important;
  max-width: 180px !important;
}


.rounded {
  border-radius: 12px !important;
}

.p10 {
  padding: 10px 0 10px 0;
}

.plr4 {
  padding: 0 4px 0% 4px;
}

.rounded {
  border-radius: 12px !important;
}

.login {
  margin-top: 10px;
}

.ptb-10 {
  padding: 10px 0 10px 0;
}

.plr-4 {
  padding: 0 4px 0% 4px;
}

.typewriter {
  overflow: hidden;
  /* Ensures the content is hidden if it overflows the element's box */
  border-right: .15em solid orange;
  /* The cursor */
  white-space: nowrap;
  /* Keeps the content on a single line */
  margin: 0 auto;
  /* Center the text horizontally */
  letter-spacing: .15em;
  /* Adds a little space between the letters for readability */
  animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: orange;
  }
}

@media (max-width: 760px) {
  .custom-img {
    width: 100%;
    height: 240px;
  }
}


.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.floating-btn {
  position: fixed;
  bottom: 20px;
  /* Adjust this value to position the button higher or lower */
  right: 20px;
  /* Adjust this value to position the button further left or right */
  z-index: 1000;
  /* Ensure it appears above other elements */
  width: 60px;
  /* Adjust the width to your liking */
  height: 60px;
  /* Adjust the height to your liking */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 39px;
  /* Adjust the font size to your liking */
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .navbar {
    font-size: 1.5rem;
    /* Adjust font size for navbar */
    font-weight: bold;
  }

  .nav-link {
    display: block;
    padding: 1.25rem 1.5rem;
    /* Adjust padding for nav links */
    font-size: 1.25rem;
    /* Adjust font size for nav links */
    font-weight: bold;
  }

  .dropdown-item {
    display: block;
    font-size: 1.25rem;
    /* Adjust font size for dropdown items */
    padding: 1rem 1.5rem;
    /* Adjust padding for dropdown items */
    font-weight: bold;
  }

  .dropdown-menu {
    border: 0px;
    padding: 0 20px;
  }
}