.logo{
    width: 100%;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    img{
        width: 100px;
    }
    i{
        color: #040880;
        font-size: 1.5rem;
    }
}

#formulario-inscricao {
  background: #fff;
  background: url(../public/logo/logo-lovisibility.gif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  font-family: 'Poppins', sans-serif;
}

.form-title {
  text-align: center;
  font-size: 2rem;
  color: #313482;
  margin-bottom: 30px;
}

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.styled-form label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  color: #040880;
}

.styled-form input,
.styled-form textarea,
.styled-form select {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  margin-top: 6px;
  background-color: #f9f9f9;
  transition: border-color 0.3s;
}

.styled-form input:focus,
.styled-form textarea:focus,
.styled-form select:focus {
  border-color: #313482;
  outline: none;
}

.styled-form button {
  align-self: flex-end;
  padding: 12px 25px;
  background-color: #313482;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.styled-form button:hover {
  background-color: #251f60;
}


/* animacoes */
/* Efeito suave nos inputs */
.styled-form input:focus,
.styled-form textarea:focus,
.styled-form select:focus {
  border-color: #313482;
  background-color: #fff;
  box-shadow: 0 0 0 2px #31348222;
  transition: all 0.3s ease;
}

/* Barra de progresso no topo */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background-color: #313482;
  z-index: 9999;
  transition: width 0.2s ease-out;
}


/* Carregando */
.loading-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loading-spinner {
    text-align: center;
    color: #333;
}