* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
.error {
  color: #b00020;
  background: #fdecea;
  border: 1px solid #f5c2c7;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  margin: 12px 0;
}

body {
  background: #fff;
  color: #333;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  padding: 20px 60px;
  border-bottom: 1px solid #eee;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
}

.logo span {
  font-style: italic;
}

.search {
  flex: 1;
  margin: 0 40px;
}

.search input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: none;
  background: #f1f1f1;
}

.header-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
}

/* MAIN */
.main {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.login-card {
  width: 420px;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 40px;
}

.login-card h2 {
  margin-bottom: 30px;
  font-weight: 600;
}

.login-card label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  color: #666;
}

.input-box {
  position: relative;
  margin-bottom: 20px;
}

.input-box input {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.eye {
  position: absolute;
  right: 12px;
  top: 14px;
  cursor: pointer;
}

.forgot {
  display: block;
  text-align: center;
  margin: 10px 0 20px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.login-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #2B4257;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.divider {
  display: flex;
  align-items: center;
  margin: 30px 0;
}

.divider span {
  flex: 1;
  height: 1px;
  background: #eee;
}

.divider p {
  margin: 0 10px;
  font-size: 12px;
  color: #aaa;
}

.google-btn {
  width: 100%;
  padding: 12px;
  border-radius: 20px;
  border: none;
  background: #e9eaec;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.google-btn img {
  width: 18px;
}

.signup {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
}

.signup a {
  color: #c7b7b4;
  text-decoration: none;
}

/* FOOTER */
.footer {
  border-top: 1px solid #eee;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-links h4 {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-links p {
  font-size: 13px;
  margin-bottom: 6px;
  color: #555;
}
