* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #ffffff;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 380px;
  margin: 40px auto;
  background: #ffffff;
  padding: 24px;
}

h1 {
  text-align: center;
  margin-bottom: 6px;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 24px;
}

label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.input-group {
  display: flex;
  align-items: center;
  background: #f1f4fa;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 16px;
}

.input-group i {
  color: #888;
  margin-right: 10px;
}

.input-group input {
  border: none;
  background: transparent;
  flex: 1;
  outline: none;
  font-size: 14px;
}

.input-group .right {
  margin-left: 10px;
  cursor: pointer;
}

.forgot {
  display: block;
  text-align: right;
  font-size: 13px;
  color: #3b82f6;
  text-decoration: none;
  margin-bottom: 16px;
}

.btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.primary {
  background: #3b82f6;
  color: #fff;
}

.btn.google {
  background: #f5f5f5;
  color: #000;
}

.btn.whatsapp {
  background: #22c55e;
  color: #fff;
}

.divider {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin: 16px 0;
}

.register {
  text-align: center;
  font-size: 14px;
}

.register a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: bold;
}