 
body {
  font-family: Arial, sans-serif;
  background: #fff2e6;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  gap: 4rem;
}

.form-container {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="file"],
input[type="tel"],
select {
  width: -webkit-fill-available;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}

/* Estilos básicos para input */
input,
select,
textarea {
  width: 100%;
  padding: 0.75rem; /* Tamanho do padding */
  font-size: 1rem;
  line-height: 1.5;
  color: #111827; /* Texto preto suave */
  background-color: #fff; /* Fundo branco */
  border: 1px solid #d1d5db; /* Cor da borda cinza */
  border-radius: 0.375rem; /* Bordas arredondadas */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* Sombra leve */
  transition: border-color 0.2s ease, box-shadow 0.2s ease; /* Transições suaves */
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #6366f1; /* Borda roxa ao focar */
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2); /* Sombra ao focar */
}

/* Estilo para input desabilitado */
input:disabled,
select:disabled,
textarea:disabled {
  background-color: #f9fafb; /* Fundo cinza claro */
  cursor: not-allowed; /* Cursor de não permitido */
}

/* Placeholder estilizado */
input::placeholder,
textarea::placeholder {
  color: #9ca3af; /* Cor do placeholder cinza suave */
}

/* Botão estilizado */
button {
  padding: 0.75rem 1rem;
  background-color: #6366f1; /* Cor roxa */
  color: white;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #4f46e5; /* Cor roxa mais escura ao passar o mouse */
}

button:disabled {
  background-color: #e5e7eb; /* Botão desabilitado em cinza */
  cursor: not-allowed;
}

.logoImg{
  width: 490px;
  height: auto;
}

.msg{
  color: red;
  display: none;
  font-size: 14px;
}

.imgCheck{
  background-color: #0e9f6e14;
  border-radius: 100%;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  padding: 12px;
  display: block;
}

/* Responsividade */
@media (max-width: 768px) {
  body{
    padding: 1rem;
    flex-direction: column;
  }
  .form-container {
    max-width: 315px;
    padding: 15px;
  }

  h1 {
    font-size: 1.25rem;
  }
  .logoImg{
    width: 250px;
    height: auto;
  }
}

@media (max-width: 480px) {
  input[type="text"],
  input[type="email"],
  select {
    padding: 0.5rem;
  }

  button {
    padding: 0.6rem;
    font-size: 0.875rem;
  }
}