/* signup.css */

/* Reset & Globals */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Full-screen background */
body {
  background: url('../images/bg.png') no-repeat center center/cover;
  position: relative;
}
body::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Centered container */
.signup-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
}

/* Glass-style card */
.signup-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 400px;
  width: 100%;
  text-align: center;
}

/* Avatar */
.avatar {
  margin-bottom: 20px;
}
.avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

/* Headings */
.shop-name {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.form-title {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Form groups */
.form-group {
  margin-bottom: 20px;
  text-align: left;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  color: #fff;
  margin-bottom: 5px;
}

/* Inputs with icons */
.input-wrapper {
  position: relative;
}
.input-wrapper .icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  opacity: 0.7;
  /* Use background-image here or inline <img> for your icons */
}
.input-wrapper input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  color: #333;
}
.input-wrapper input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(43, 196, 227, 0.5);
}

/* Submit button */
.btn-submit {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 50px;
  background-color: #2bc4e3;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.btn-submit .arrow-icon {
  margin-left: 8px;
}
.btn-submit:hover {
  background-color: #23accd;
}

/* “Log in” link */
.login-link {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #fff;
}
.login-link a {
  color: #2bc4e3;
  text-decoration: none;
}
.login-link a:hover {
  text-decoration: underline;
}
/* —————————————————————————————
   Responsive Adjustments for signup.css
—————————————————————————————*/

/* Tablets and small desktops */
@media (max-width: 768px) {
  .signup-container {
    padding: 0 20px;
  }

  .signup-card {
    max-width: 90%;
    padding: 30px 25px;
  }

  .avatar img {
    width: 100px;
    height: 100px;
  }

  .shop-name {
    font-size: 2rem;
  }

  .form-title {
    font-size: 1.4rem;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .input-wrapper input {
    padding: 16px 20px 16px  Fiftypx;
    font-size: 1.1rem;
  }

  .btn-submit {
    padding: 18px;
    font-size: 1.3rem;
  }

  .login-link {
    font-size: 0.95rem;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .signup-container {
    padding: 0 15px;
  }

  .signup-card {
    padding: 25px 20px;
  }

  .avatar img {
    width: 80px;
    height: 80px;
  }

  .shop-name {
    font-size: 1.8rem;
  }

  .form-title {
    font-size: 1.2rem;
  }

  .form-group label {
    font-size: 0.8rem;
  }

  .input-wrapper input {
    padding: 18px 18px 18px 48px;
    font-size: 1.2rem;
  }

  .btn-submit {
    padding: 20px;
    font-size: 1.4rem;
  }

  .login-link {
    font-size: 1rem;
  }
}
#errors {
  background: rgba(255, 255, 255, 0.05); /* fondo translúcido elegante */
  border: 1px solid rgba(255, 255, 0, 0.4); /* borde sutil amarillo */
  border-left: 4px solid #ffcc00; /* acento amarillo */
  color: #ffcc00;
  padding: 15px 20px;
  border-radius: 12px;
  margin: 20px auto;
  max-width: 500px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}

#errors ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#errors li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
  line-height: 1.4;
}

#errors li::before {
  content: "⚠";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffcc00;
  font-size: 18px;
}
