/* Reset & Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  background-color: #f1f0f8;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Wrapper */
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Shared Box for Login & Register */
.auth-box {
  background: #ffffff;
  width: 360px;
  padding: 50px 35px 35px;
  border-radius: 10px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  text-align: center;
}

/* Mascot */
.mascot {
  position: absolute;
  top: -168px;
  left: 50%;
  transform: translateX(-50%);
}

.mascot img {
  width: 283px;
}

/* Title */
.auth-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
}

/* Input Group */
.input-group {
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  margin-bottom: 15px;
}

.input-group i {
  color: #777;
  margin-left: 12px;
  margin-right: 10px;
  font-size: 14px;
}

.input-group input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  color: #333;
  padding: 10px 0;
}

/* Captcha */
.captcha {
  justify-content: space-between;
  padding-left: 12px;
  padding-right: 5px;
}

.captcha input {
  padding: 10px 0;
  padding-left: 10px;
}

.captcha img {
  height: 35px;
  width: 90px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

/* Remember Me */
.remember-row {
  text-align: left;
  font-size: 14px;
  margin: 10px 0 20px;
  color: #555;
}

.remember-row input {
  margin-right: 6px;
  accent-color: #8cc63f;
}

/* Terms & Conditions */
.terms-row {
  text-align: left;
  font-size: 14px;
  margin: 8px 0 18px;
  color: #555;
}

.terms-row input {
  margin-right: 6px;
  accent-color: #8cc63f;
}

.terms-row a {
  color: #8cc63f;
  text-decoration: none;
  font-weight: 500;
}

/* Buttons */
.auth-btn {
  background-color: #8cc63f;
  color: #fff;
  border: none;
  border-radius: 5px;
  width: 100%;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.auth-btn:hover {
  background-color: #7ab32f;
}

/* Bottom Links */
.bottom-text {
  margin-top: 18px;
  font-size: 14px;
  color: #555;
}

.bottom-text a {
  color: #8cc63f;
  text-decoration: none;
  font-weight: 500;
}

/* Utilities */
.p-0 {
  padding: 0 !important;
}

/* Responsive */
@media (max-width: 480px) {
  .auth-box {
    width: 90%;
    margin-top: 150px;
    padding: 45px 25px 30px;
  }
}
