/* login-signup.css: estilos para telas de login e cadastro */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body{
  background: linear-gradient(135deg, #f0ead8 0%, #e8e0ce 50%, #ddd5c4 100%);
}
body.login-bg {
  background: linear-gradient(135deg, #f0ead8 0%, #e8e0ce 50%, #ddd5c4 100%);
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
}
.login-container {
  background: white;
  padding: 15px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 400px;
  text-align: center;
  margin: 50 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .login-container {
    padding: 20px 8px;
    max-width: 98vw;
  }
  body.login-bg {
    padding: 0;
    min-height: 100vh;
    width: 100vw;
  }
}
.logo {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #010101;
  font-family: Lora, serif;
}
input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  margin: 8px 0 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}
.password-wrapper {
  position: relative;
}
.forgot {
  font-size: 13px;
  margin-bottom: 20px;
  display: block;
  color: #555;
  text-decoration: underline;
  cursor: pointer;
}
button[type="submit"],
button.login-btn {
  width: 100%;
  background: #1a1a1a;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 20px;
  cursor: pointer;
}
.divider {
  border-top: 2px solid #000000;
  margin: 8px 0;
}
.social-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, background 0.2s;
  font-size: 2rem;
  border: none;
}
.btn-social:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  background: #eaeaea;
}
.btn-google i {
  color: #da4949;
}
.btn-facebook i {
  color: #3865e2;
}
.social-buttons button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 10px;
  cursor: pointer;
}
.links {
  margin-top: 20px;
  font-size: 13px;
}
.links a {
  color: #0073e6;
  text-decoration: none;
}
.footer {
  text-align: center;
  font-size: 12px;
  margin-top: 40px;
  color: #888;
}
.footer a {
  color: #888;
  text-decoration: underline;
}
