@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: 100%;
  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: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 1rem;
  text-align: left;
}

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

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


.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;
}

.sms-info {
  font-size: 0.75rem;
  color: #777;
  margin-top: -0.5rem;
}


.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;
  }
}
