/* Tổng thể full màn hình */
.login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding-top: 40px;
  padding-bottom: 40px;
  background: linear-gradient(to right, #e0f0ff, #ffffff);
}

/* Form login */
.login-form {
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

/* Tiêu đề */
.login-form h2 {
  color: #003087;
  margin-bottom: 28px;
  font-size: 28px;
  font-weight: 700;
}

/* Ô input */
.login-form input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.login-form input:hover,
.login-form input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px #007bff33;
}

/* Link quên mật khẩu */
.forgot-password {
  font-size: 13px;
  text-decoration: none;
  color: #007bff;
  display: inline-block;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Nút đăng nhập */
.login-form button {
  width: 100%;
  padding: 14px;
  background-color: #007bff;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-form button:hover {
  background-color: #0056d2;
}

/* Đăng nhập qua mạng xã hội */
.social-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.social-label {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icon {
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 8px;
  background-color: white;
  padding: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
  background-color: #e6f2ff;
}

/* Nhóm input + icon mắt */
.input-group {
  position: relative;
  width: 100%;
  margin-bottom: 18px;
}

.input-group input {
  width: 100%;
  padding: 14px 16px;
  padding-right: 44px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.eye-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
  transform-origin: center;
}

.eye-icon:hover {
  color: #007bff;
  transform: translateY(-50%) scale(1.2);
}
