.form-wrapper {
  background: transparent;
  border-radius: 20px;
  padding: 50px;
  border: 1px solid #d6d5d5;
}

/* Upload Box */
.upload-box {
  border: 1px solid #e3e6ea;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.upload-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.upload-icon {
  width: 45px;
  height: 45px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #6c757d;
}

/* Inputs */
.form-control,
.form-select {
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid #dcdfe3;
  background-color: transparent !important;
}

textarea.form-control {
  height: 150px;
  resize: none;
}

/* Mint Button */
.mint-btn {
  background: #000;
  color: #fff;
  padding: 15px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 18px;
}

.mint-btn:hover {
  background: #111;
}

/* Responsive */
@media(max-width:768px) {
  .form-wrapper {
    padding: 25px;
  }
}


/* sign in css */

.auth-wrapper {
  max-width: 500px;
  margin: 80px auto;
}

.auth-title {
  font-weight: 700;
  font-size: 42px;
}

.auth-sub {
  color: #6c757d;
}

.form-label {
  font-weight: 600;
  margin-top: 25px;
}

.form-control {
  border-radius: 10px;
  padding: 14px 45px 14px 15px;
  border: 1px solid #dcdfe3;
}

.input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
}

.input-group-wrapper {
  position: relative;
}

.auth-btn {
  background: #2d2f39;
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 35px;
}

.auth-btn:hover {
  background: #1f2128;
}