@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Noto Sans', sans-serif;
  background-color: #1d4276;
  color: white;
  line-height: 1.6;
}

/* Header */
.header {
  background-color: #1F497D;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  border-bottom: 4px solid #FF7F00;
}

.logo {
  max-height: 48px;
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background: #FF7F00;
  border-radius: 2px;
}

#menu-toggle {
  display: none;
}

.menu-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  top: 100%;
  right: 5%;
  background-color: #11325C;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 100;
}

#menu-toggle:checked + .menu-icon + .menu-mobile {
  display: flex;
}

.menu-mobile a,
.nav-desktop a {
  color: #FF7F00;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.menu-mobile a:hover,
.nav-desktop a:hover {
  color: #ffa740;
}

/* Formulário */
.container {
  padding: 2rem 5%;
  display: flex;
  justify-content: center;
}

.forms {
  width: 100%;
  max-width: 500px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #D9D9D9;
  border-radius: 10px;
  padding: 2rem;
}

.login-form h1 {
  color: #1F497D;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 10px;
}

.login-form label {
  color: #1F497D;
  font-weight: 600;
}

.login-form input,
.login-form textarea {
  padding: 12px;
  font-size: 1rem;
  border: none;
  background-color: #4A4541;
  color: white;
  border-bottom: 2px solid #FF7F00;
  border-radius: 6px;
}

.login-form textarea {
  resize: vertical;
}

.login-form button {
  padding: 12px;
  background-color: #FF7F00;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-form button:hover {
  background-color: #e07305;
}

.input-file {
  display: none; 
}

.upload-label {
  display: inline-block;
  background-color: #e07305; 
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


.upload-label:hover {
  background-color: #FF7F00;
  color: white
}


@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .menu-icon,
  .menu-mobile {
    display: none;
  }
}


.btn-voltar {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  font-size: 15px;
  color: #FF7F00;
  text-decoration: none;
  font-weight: bold;
  background-color: transparent;
  border: 2px solid #FF7F00;
  border-radius: 6px;
  transition: background-color 0.3s, color 0.3s;
}

.btn-voltar:hover {
  background-color: #FF7F00;
  color: white;
}