@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

* {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  min-height: 100vh;
}

.container {
  display: flex;
  min-height: 100vh;
}

.left-side {
  flex: 1;
  background-color: #ffe8dc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-side img {
  width: 90%;
  max-width: 500px;
  height: auto;
}

.right-side {
  flex: 1;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.cadastro-container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.logo-box img {
  width: 80px;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.cadastro-form input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 30px;
  border: 1px solid #ccc;
  background-color: #eee;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  outline: none;
}

.senha-container {
  position: relative;
}

.senha-container i {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  cursor: pointer;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 1rem;
  text-align: left;
}

.checkbox-container input {
  margin-top: 4px;
}

.btn-laranja {
  width: 100%;
  background-color: #ff6c0c;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  padding: 14px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-laranja:hover {
  background-color: #e55b00;
}

.ou {
  font-size: 0.85rem;
  color: #999;
  margin: 1.5rem 0 0.5rem;
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 30px;
  background-color: white;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  width: 100%;
}

.btn-google i {
  font-size: 1.1rem;
  color: #ff6c0c;
}

.login {
  font-size: 0.9rem;
  margin-top: 1rem;
}

.login a {
  color: #ff6c0c;
  text-decoration: none;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-side {
    display: none;
  }

  .right-side {
    flex: none;
    padding: 1rem;
  }

  .cadastro-container {
    border-radius: 0;
    box-shadow: none;
  }
}


.hidden { display: none !important; }

.modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  width: 90%;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,.2);
  position: relative;
}

.modal-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #1e1e1e;
}

.btn-opcao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background-color: #de5114;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color .3s ease, transform .2s ease;
}

.btn-opcao i { font-size: 1.2rem; }

.btn-opcao:hover {
  background-color: #b23e0f;
  transform: scale(1.02);
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
}
.close-modal:hover { color: #333; }
