:root {
  --bs-primary-rgb: 255, 140, 0;  /* Replace with your desired RGB values */
}


/* navbar */
  .fill{

    height: 100vh;
  }

  html, body {
    height: 100%; /* Make sure the html and body elements fill the viewport */
    margin: 0;    /* Remove default margin */
}


  
  .form-control-dark {
    color: #fff;
    background-color: var(--bs-dark);
    border-color: var(--bs-gray);
  }
  .form-control-dark:focus {
    color: #fff;
    background-color: var(--bs-dark);
    border-color: #fff;
    box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .25);
  }
  
  .bi {
    vertical-align: -.125em;
    fill: currentColor;
  }
  
  .text-small {
    font-size: 85%;
  }
  
  .dropdown-toggle {
    outline: 0;
  }

  .text-white {
    color: #2ff;
  }
  
  .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #fff;
    border-radius: .75rem;
  }
  
  .icon-link {
    display: inline-flex;
    align-items: center;
  }
  .icon-link > .bi {
    margin-top: .125rem;
    margin-left: .125rem;
    transition: transform .25s ease-in-out;
    fill: currentColor;
  }
  .icon-link:hover > .bi {
    transform: translate(.25rem);
  }
  
  .icon-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    border-radius: .75rem;
  }
  
  .rounded-4 { border-radius: .5rem; }
  .rounded-5 { border-radius: 1rem; }
  
  .text-shadow-1 { text-shadow: 0 .125rem .25rem rgba(0, 0, 0, .25); }
  .text-shadow-2 { text-shadow: 0 .25rem .5rem rgba(0, 0, 0, .25); }
  .text-shadow-3 { text-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .25); }
  
  .card-cover {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }

  .text-shadow-1 h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.753); /* Adjust the blur and opacity as needed */
}

  .background {
    background-color: rgba(0, 0, 0, .1);
    flex-direction: column;  /* Align items in a column */
    min-height: 100vh;      /* Ensure the body takes at least the full height of the viewport */
  }

  .body {
    background-color: #f8f9fa;
    min-height: 100vh;      /* Ensure the body takes at least the full height of the viewport */
  }

  .img__wrap {
    position: relative;
  }
  
  .img__description {
    font-size: 1.5rem;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: 1.5rem;
    background-color: rgba(13, 16, 17, 0.568);
    color: #fff;
    visibility: hidden;
    opacity: 0;
  
    /* transition effect. not necessary */
    transition: opacity .2s, visibility .2s;
  }
  
  .img__wrap:hover .img__description {
    visibility: visible;
    opacity: 1;
  }


  @media (min-width: 992px) {
    .rounded-lg-3 { border-radius: .3rem; }
  }

  @media (min-width: 576px) and (max-width: 991px) {
    .container{
      margin-left : 0px !important;
      margin-right: 0px !important;
    }
  }
  

  /* pagina de login */

  .form-signin {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
  }
  
  .form-signin .checkbox {
    font-weight: 400;
  }
  
  .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;
  }
  

/* Calendar */
.classes-list {
  margin-top: 20px;
}

.classes-list ul {
  list-style-type: none;
  padding: 0;
}

.classes-list li {
  background: #f8f9fa;
  padding: 10px;
  margin: 5px 0;
  border-radius: 5px;
}

.react-calendar {
  background-color: #ffffff;  /* Fundo branco */
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Sombra suave */
  border: none;
  padding: 20px;
  height: 350px;
  width: 500px!important;
  font-family: 'Poppins', sans-serif; /* Escolha de fonte moderna */
}

.react-calendar__tile {
  font-size: 18px;  /* Aumente um pouco o tamanho do texto */
  padding: 15px;
  border-radius: 10px;
  background-color: #f0f0f0;  /* Cor de fundo clara */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.react-calendar__tile:hover {
  background-color: #ffcc80;  /* Destaque ao passar o mouse */
  color: #333;
}

.react-calendar__tile--active {
  background-color: #ff8c00;  /* Cor de destaque quando o dia está selecionado */
  color: white;
}

.react-calendar__navigation button {
  color: #ff8c00;  /* Cor de destaque para os botões de navegação */
  background: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  margin: 0 5px;
  cursor: pointer;
}


@media (max-width: 768px) {
  .react-calendar {
    width: 100%;
    font-size: 14px;
  }
}





.not-found-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  background-color: #f8f9fa;
  padding: 20px;
}

.not-found-content {
  max-width: 600px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.not-found-heading {
  font-size: 6rem;
  color: #dc3545;
  margin-bottom: 20px;
}

.not-found-message {
  font-size: 1.5rem;
  margin: 20px 0;
  color: #333;
}

.not-found-link {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.not-found-link:hover {
  background-color: #0056b3;
}

.not-found-image {
  margin-top: 20px;
}

.not-found-image img {
  max-width: 100%;
  height: auto;
}



.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.login-form-wrapper {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.logo {
  width: 60px;
  height: auto;
}

h2 {
  color: #333;
}

.form-control {
  border: 1px solid #ccc;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

button.btn-primary {
  background-color: #007bff;
  border: none;
  transition: background-color 0.3s, transform 0.2s;
}

button.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

button.btn-primary:active {
  transform: translateY(0);
}
