@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: "Poppins", serif;
  font-weight: 500;
  background-color: #fff;
  color: #343a40;
  line-height: 1.6;
  background-color: #f4f4f4;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  background-color: #f4f4f4;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  min-height: 465px;
}
.container h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

button, .icone {
  padding: 12px;
  font-size: 1.25rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}
button.btn-secondary, .icone.btn-secondary {
  background-color: #333;
  color: #fff;
}
button.btn-success, .icone.btn-success {
  background-color: #ff385c;
  color: #fff;
}
button:hover, .icone:hover {
  opacity: 0.85;
}

#backToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  background-color: #555;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

#backToTopBtn.show {
  opacity: 1;
}

html {
  scroll-behavior: smooth;
}

nav {
  background-color: white;
  padding: 10px 0;
  position: relative;
}
nav .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
nav .logo {
  width: 60px;
}
nav .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  font-size: 24px;
  color: #333;
  transition: color 0.3s ease;
}
nav .menu-toggle .fa-bars {
  display: block;
}
nav .menu-toggle .fa-xmark {
  display: none;
}
nav .menu-toggle.open .fa-bars {
  display: none;
}
nav .menu-toggle.open .fa-xmark {
  display: block;
}
nav .menu-toggle:focus {
  outline: none;
}
nav .navbar {
  display: flex;
  align-items: center;
}
nav .navbar a {
  text-decoration: none;
  color: #333;
  padding: 10px;
  transition: color 0.3s ease;
}
nav .navbar a:hover {
  color: #ff385c;
}
@media (max-width: 1024px) {
  nav {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  nav .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    padding: 10px;
    z-index: 1;
  }
  nav .navbar a {
    padding: 10px;
    font-size: 18px;
  }
  nav .navbar.open {
    display: flex;
  }
  nav .menu-toggle {
    display: block;
  }
}

footer {
  background: #222;
  color: #fff;
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
}
footer .containerr {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
footer p {
  margin-bottom: 15px;
  font-size: 14px;
  opacity: 0.8;
}
footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer .footer-links li {
  margin: 5px 15px;
}
footer .footer-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
footer .footer-links li a:hover {
  color: #ff385c;
}
footer .footer-social {
  margin-top: 10px;
}
footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}
footer .footer-social a:hover {
  background: #ff385c;
  color: #fff;
}
@media (max-width: 1024px) {
  footer .footer-links {
    flex-direction: column;
    align-items: center;
  }
  footer .footer-links li {
    margin: 5px 0;
  }
  footer .footer-social a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

h1 {
  text-align: center;
}

form label {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}
form input[type=text],
form input[type=email],
form input[type=password],
form input[type=date],
form input[type=tel] {
  width: calc(100% - 20px);
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
}
form input[type=checkbox] {
  margin-right: 10px;
}
form textarea.form-control {
  width: 100%;
}

.auth-page {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background: #f5f5f5;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.auth-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: left;
  color: #222;
}

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

.auth-field {
  margin-bottom: 6px;
}

.auth-field label {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.auth-field input,
.auth-field textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}

.auth-field input:focus,
.auth-field textarea:focus {
  outline: none;
  border-color: #ff385c;
  box-shadow: 0 0 0 1px rgba(255, 56, 92, 0.25);
}

.auth-field-inline {
  display: flex;
  align-items: center;
}

.auth-primary-btn {
  width: 100%;
  background-color: #ff385c;
  color: #fff;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 600;
  border: none;
}

.auth-primary-btn:hover {
  opacity: 0.9;
}

.auth-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 0.9rem;
}

.auth-links a {
  color: #222;
  text-decoration: underline;
}

.auth-legal {
  margin: 8px 0 4px;
  font-size: 0.85rem;
}

.auth-legal a {
  color: #555;
  text-decoration: underline;
}

.auth-help {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.password-toggle-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-toggle-wrapper input {
  padding-right: 44px;
}

.password-toggle-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #666;
  cursor: pointer;
  padding: 4px;
  margin: 0;
  font-size: 1rem;
  line-height: 1;
}

.password-toggle-btn:hover {
  color: #ff385c;
  opacity: 1;
}

/*# sourceMappingURL=form.css.map */
