/* styles.css */

/* Fontes personalizadas */
body {
  font-family: 'Roboto', sans-serif;
}

/* Estilo para o Jumbotron */
.jumbotron {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  position: relative;
}



.jumbotron::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Sobreposição escura */
}

.jumbotron .container {
  position: relative;
  z-index: 1;
}

/* Estilo para Botões */
.btn-primary, .btn-success, .btn-outline-danger {
  transition: background-color 0.3s, color 0.3s;
}

.btn-primary:hover, .btn-success:hover, .btn-outline-danger:hover {
  opacity: 0.8;
}

.btn-primary1 {
  transition: background-color 0.3s, color 0.3s;
  width: 80%;
}

.btn-primary1:hover {
  opacity: 0.8;
}




.btn-success-work {
  
    /* background-color: #2c3e50; */
    border: 2px solid #34495e;
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    /* display: block; */
    font-size: 16px;
    margin: 10px auto;
    cursor: pointer;
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    
    /* min-width: 420px; */
    color: darkolivegreen;
}



.btn-success-work i {
  margin-right: 8px; /* Espaço entre o ícone e o texto */
}

.btn-success-work:hover {
  background-color: #34495e; /* Azul Mais Claro */
  transform: translateY(-3px); /* Elevação ao Passar o Mouse */
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3); /* Sombra Mais Intensa */
  color: white;
}

.float-left{
  float: left;
  text-align: center;
  text-decoration: none;
  display: block; /* Exibir como bloco */
  font-size: 30px;

  
  }
  .float-left:hover{
     color: white;
    
    }
  
  .float-right{
  float: right;
 
  text-align: center;
  text-decoration: none;
  display: block; /* Exibir como bloco */
  font-size: 30px;

  
  }

  .float-right:hover{
color: white;
  }


/* Rodapé */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* Login e Registro */
.login-container, .register-container {
  width: 100%;
  max-width: 400px;
}

/* Cards de Contato */
.card-title {
  font-weight: bold;
}

/* Toasts */
.toast-header {
  background-color: #343a40 !important;
  color: #fff !important;
}

.toast-body {
  color: #fff;
}

.icon-container {
  display: flex;
  align-items: center;
}

.icon-spacing {
  margin-right: 8px; /* Ajuste o valor conforme necessário */
}

a.text-white {
  text-decoration: none;
}

#companyIdField {
  display: block;
}