* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body, html {
  height: 100%;
}

.main-acesso {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: url('../new/assets/img/bg.jpg') no-repeat center center/cover;
}

.container {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px 20px;
  border-radius: 16px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.logo {
  width: 120px;
  margin-bottom: 20px;
   display: block;
  margin: 0 auto;
}

.logo-secundaria {
  margin-top: 20px; /* Espaçamento acima */
  margin-bottom: 20px; /* Espaçamento abaixo */
  max-width: 400px; /* Deixa ela maior que a primeira */
}

.acesso-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-text {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  font-size: 1rem;
}

.input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  justify-content: flex-start;
}

.input-group input[type="radio"] {
  transform: scale(1.2);
}

.btn {
  margin-top: 10px;
  padding: 12px;
  background: linear-gradient(135deg, #006400, #32CD32); /* Verde escuro para verde claro */
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
  font-weight: 600;
}

.btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

  .celular-container {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.celular-container img {
  width: 360px;
  max-width: 90%;
  height: auto;
}



