@media (min-width: 550px) {

}
@media (min-width: 1100px) {
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: white;
}


.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #2A1BA8;
}

.logo img {
  height: 100px;
}
.ent {
  color: white;
}
.search-bar {
  display: flex;
  align-items: center;
  width: 40%; 
  background-color: white;
  border-radius: 50px;
  padding: 5px 15px;
}

.search-bar input {
  border: none;
  outline: none;
  width: 100%;
  background-color: transparent;
  font-size: 1em;
}

.search-bar svg {
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.user-actions {
  color: #2A1BA8;
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-actions a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  height: 20px;
}

.user-actions svg {
  height: 20px;
}

.header-bottom {
  background-color: black;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a, .products-link a {
  color: white;
  text-decoration: none;
  font-weight: 400;
}

.products-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.products-link svg {
  width: 25px;
  height: 25px;
}


.cadastro-container {
  max-width: 500px;
  width: 90%;
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;

  margin: 50px auto; 
}

.cadastro-container h2 {
  font-size: 2em;
  color: #000;
  margin-bottom: 5px;
}

.cadastro-container p {
  font-size: 1em;
  margin-bottom: 30px;
}

.cadastro-form {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.cadastro-form label {
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 5px;
}

.cadastro-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
}

.checkbox-label {
  font-weight: 400;
  margin: 0;
}

.submit-button {
  background-color: #1a237e;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: 600;
  margin-top: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #0d1252;
}

.login-link {
  margin-top: 20px;
  font-size: 0.9em;
}

.login-link a {
  color: #1a237e;
  text-decoration: none;
  font-weight: 600;
}

.login-link a:hover {
  text-decoration: underline;
}


.footer {
  background-color: #000;
  color: white;
  padding: 40px 20px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  margin: 20px;
  text-align: left;
}

.footer-section h4 {
  border-bottom: 2px solid white;
  padding-bottom: 5px;
}

.footer-section p, .footer-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-section a {
  color: white;
  text-decoration: none;
  line-height: 1.8;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
}