.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #FF4900;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
}

.link-secondary2 {
  color: #ffffff!important;
}

.form-control::placeholder {
  color: #FC7F03;
  opacity: 1;
}
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 50px;
  height: 50px;
  transition: background-color 0.3s, transform 0.3s;
  z-index: 9999;
}

/* Modo Claro */
[data-bs-theme="light"] .floating-btn {
  background: linear-gradient(#FC7F03, #FFAB03);
}

/* Modo Escuro */
[data-bs-theme="dark"] .floating-btn {
  background: linear-gradient(#FC3903, #FC7F03);
}

[data-bs-theme="light"] .floating-btn:hover {
  
  background: linear-gradient(#FC3903, #FC7F03);
}

[data-bs-theme="dark"] .floating-btn:hover {
  background: linear-gradient(#FC7F03, #FFAB03); 
}

.floating-btn:hover {
  transform: scale(1.1);
}


.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 10px;
    width: 80%;
    max-width: 800px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


