.irus-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Form */
.irus-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.irus-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.irus-input-icon {
  position: absolute;
  left: 16px;
  color: #999;
}

/* Input */
.irus-input {
  width: 100%;
  height: 52px;
  padding: 0 48px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  font-size: 15px;
  background: #f9f9f9;
}

/* Button */
.irus-btn {
  width: 100%;
  height: 52px;
  border-radius: 26px;
  font-weight: 600;
}
.irus-btn--primary {
  background: #1a1a1a;
  color: #fff;
}
.irus-btn--secondary {
  background: transparent;
  border: 1px solid #e5e5e5;
}

