/* Estilização Global */
body {
  background: linear-gradient(to top right, #179c9cc4 80%, #e9c66de6 100%);
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Cabeçalho e Login */
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* Container do Formulário */
.all-form {
  background-color: rgba(255, 255, 255, 0.95);
  width: 95%;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  margin-top: 50px;
}

/* Título Principal */
h1 {
  text-align: center;
  color: #004C4C;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Campos de Input */
input,
select,
textarea {
  width: 100%;
  height: 40px;
  padding: 8px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #bbb;
  outline: none;
  transition: 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #008B8B;
  box-shadow: 0 0 6px rgba(0, 139, 139, 0.5);
}

/* Botão de Submit */
.submit-container {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  align-items: center;
  margin-bottom: 30px;
}

.buttons {
  background-color: #ceffff66;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  width: auto;
  display: flex;
  margin: 0 auto;
  justify-content: center;
}

.buttons:hover {
  background-color: #0c6b6b;
  transform: scale(1.05);
}

/* Container de Inputs */
.container-form-geral {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 60px;
}

.sub-title-details {
  text-align: center;
  font-family: fantasy;
  text-transform: uppercase;
  color: #006666;
  font-size: 36 !important;
}

.container-input-details1,
.container-input-details2 {
  width: 48%;
}

.container-input-details-geral {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 3px solid #4AC4B9;
  padding: 15px 0;
}

/* Labels */
.label-input-details {
  font-size: 15px;
  font-weight: bold;
  color: #444;
  display: block;
  margin-bottom: 5px;
}

/* Área de Comentário */
.input-default-comments {
  width: 100%;
  height: 120px;
  resize: none;
  border-radius: 6px;
}

/* Responsividade */
@media (max-width: 768px) {
  .all-form {
    width: 95%;
    padding: 20px;
  }

  .container-input-details1,
  .container-input-details2 {
    width: 100%;
  }

  .header {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .submit-container {
    display: flex;
    justify-content: center;
    width: 40%;
  }
}

/* Navbar */
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
  font-size: 20px;
  font-weight: bold;
  color: #006666;
  text-transform: uppercase;
}

.navbar .nav-links {
  display: flex;
  gap: 20px;
}

.navbar .nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 5px;
  transition: 0.3s;
}

.navbar .nav-links a:hover {
  background-color: #4AC4B9;
  color: white;
}

/* Responsividade */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .navbar .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }
}