/* Layout base */
body {
  background-color: #f5f5f5;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  height: 100vh;
  margin: 0;
}

/* Container do formulário */
.login-container {
  background: white;
  padding: 40px;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Título */
.login-container h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Parágrafos e links */
.login-container p {
  font-size: 14px;
  color: #333;
}

.login-container a {
  color: #007e9e;
  text-decoration: none;
}

/* Formulário */
.login-container form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-container form input,
.login-container form button {
  width: 100%;
  box-sizing: border-box;
}

/* Floating label */
.floating-label {
  position: relative;
  margin-bottom: 20px;
}

.floating-label input {
  width: 100%;
  padding: 14px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  background: white;
}

.floating-label label {
  position: absolute;
  top: 14px;
  left: 12px;
  font-size: 16px;
  color: #888;
  background: white;
  padding: 0 4px;
  transition: 0.2s ease all;
  pointer-events: none;
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label {
  top: -8px;
  left: 10px;
  font-size: 12px;
  color: #007e9e;
}

/* Checkbox */
.checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-container input {
  margin-right: 10px;
}

/* Botão de ação */
.login-container button {
  padding: 12px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

/* Divisor */
.divider {
  text-align: center;
  margin: 20px 0;
  color: #888;
}

/* Login social */
.social-login {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-login.vertical {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #000;
  border-radius: 4px;
  background-color: #fff;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

.social-btn img {
  width: 20px;
  height: 20px;
}
