html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

/*TOPO VERDE COM OS ÍCONES SOCIAIS*/
.topbar {
  background-color: #37AF8F;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Nunito', sans-serif;
}

.topbar-left .nome-associacao {
  letter-spacing: 0.5px;
  margin-left: 40px;
}

.topbar-right {
  display: flex;
  gap: 15px;
  align-items: center;
}


.topbar-right a {
  color: #ffffff;
  margin-left: 2px;
  font-size: 1rem;
  transition: 0.3s ease;
  text-decoration: none;
}

.topbar-right a:hover {
  color: #DFF3E3;
  transform: scale(1.1);
}

/*LOGIN*/
.container {
  max-width:450px;
  margin: 60px auto;
  background: #FFFFFF;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/*TÍTULO*/
.container h1 {
  text-align: center;
  color: #37AF8F;
  margin-bottom: 20px;
}

/*FORMULÁRIOS*/
.form {
  display: none;
}

.form.active {
  display: block;
}

/*GRUPO INPUT (SENHA)*/
.input-group {
  position: relative;
  margin-bottom: 12px;
}

.input-group input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #CCCCCC;
  font-size: 0.95rem;
  transition: border 0.3s;
}

.input-group input:focus {
  color: #999999;
}

/*ÍCONE MOSTRAR SENHA*/
.toggle-senha {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: #666666;
  transition: 0.3s;
}

.toggle-senha:hover {
  color: #37AF8F;
}

/*BOTÕES*/
button {
  width: 100%;
  padding: 10px;
  background-color: #37AF8F;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
  margin-top: 5px;
}

button:hover {
  background-color: #1D99AA;
  transform: translateY(-1px);
}

/*RODAPE*/
footer {
    background-color: #1D89AA;
    color: #ffffff;
    padding: 25px 0 10px 0;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 25px;
    min-width: 250px;
}

.footer-logo {
    width: 200px;
    height: auto;
    margin-top: 10px;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-menu ul li a:hover {
    color: #37AF8F;
}


.footer-center {
    flex: 1;
    min-width: 250px;
    margin-left: 30px;
}

.footer-center h3 {
    color: #37AF8F;
    font-size: 18px;
    margin-bottom: 8px;
}

.footer-center p {
    margin: 4px 0;
    font-size: 16px;
    line-height: 1.4;
}

.footer-right {
    flex: 1;
    min-width: 250px;
}

.footer-right h3 {
    color: #37AF8F;
    font-size: 17px;
    margin-bottom: 8px;
}

.footer-right p {
    margin: 4px 0;
    font-size: 14px;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.social-icon a img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s, filter 0.3s;
}

.social-icon a img:hover {
    transform: scale(1.1);
    filter: brightness(0) invert(0.7) sepia(1) hue-rotate(20deg) saturate(5);
}

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #1D89AA;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #1D99AA;
}

