*{box-sizing:border-box}

body{
  margin:0;
  padding:40px 20px;
  font-family:Arial;
  background:linear-gradient(135deg,#f0fff8,#fff);
}

.container{
  max-width:700px;
  margin:auto;
  text-align:center;
}

/* Animation */
.title-main,.title-sub,.logo,.content,.form-section,.email-button,.email-option{
  opacity:0;
  transform:translateY(60px);
}

.container.animate *{
  animation:fadeUp 1s forwards;
}

@keyframes fadeUp{
  to{opacity:1;transform:translateY(0)}
}

/* Titles */
.title-main{
  font-family:'Playfair Display';
  font-size:50px;
  color:#00674B;
}

.title-sub{
  font-size:22px;
  font-weight:700;
}

/* Trademark */
.tm{
  font-size:0.4em;
  position:relative;
  top:6px;
}

/* Logo */
.logo{
  width:260px;
  margin:20px 0;
}

/* Cards */
.card{
  background:rgba(255,255,255,0.6);
  backdrop-filter:blur(12px);
  border:2px solid rgba(0,103,75,0.3);
  border-radius:20px;
  padding:14px;
  margin-bottom:14px;
}

.card.highlight{
  border-left:6px solid #00674B;
}

.card.assignment{
  background:rgba(200,255,230,0.6);
  border:2px solid #00ff99;
  box-shadow:0 0 12px rgba(0,255,153,0.6);
}

.card p{font-weight:400}
.card.assignment p{font-weight:700}

/* Divider */
.divider{
  height:1px;
  background:#00674B;
  margin:10px 0;
}

/* Brand */
.brand{
  font-family:'Playfair Display';
  color:#00674B;
}

/* ===== EMAIL TEXT ===== */
.email-option{
  font-weight:600;
  margin-top:10px;
}

/* ===== EMAIL BUTTON (GLASS + NEON) ===== */
.email-button{
  display:inline-block;
  margin:15px 0 30px;
  padding:12px 24px;

  border-radius:16px;

  background:rgba(255,255,255,0.6);
  backdrop-filter:blur(12px);

  border:1px solid #00ff99;

  color:#00674B;
  font-weight:700;
  text-decoration:none;

  box-shadow:
    0 0 12px rgba(0,255,153,0.6),
    0 0 24px rgba(0,255,153,0.3);

  transition:0.3s;
}

.email-button:hover{
  background:#00ff99;
  color:#000;
}

/* ===== FORM (GLASS BOX RESTORED) ===== */
.form-section{
  max-width:500px;
  margin:auto;
  padding:20px;
  border-radius:20px;

  background:rgba(255,255,255,0.55);
  backdrop-filter:blur(14px);

  border:2px solid rgba(0,103,75,0.4);

  box-shadow:
    0 6px 20px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

/* Labels */
label{
  display:block;
  margin-top:10px;
  text-align:left;
}

/* Inputs */
input,select{
  width:100%;
  padding:10px;
  border-radius:10px;
  border:1px solid rgba(0,103,75,0.3);
  background:rgba(255,255,255,0.7);
  outline:none;
}

/* Focus */
input:focus,select:focus{
  border-color:#00ff99;
  box-shadow:0 0 8px rgba(0,255,153,0.5);
}

/* Phone */
.phone-input{
  display:flex;
  align-items:center;
  border-radius:10px;
  overflow:hidden;
  border:1px solid rgba(0,103,75,0.3);
  background:rgba(255,255,255,0.7);
}

.phone-input span{
  padding:10px;
  background:rgba(0,103,75,0.1);
  font-weight:600;
  color:#00674B;
}

.phone-input input{
  border:none;
  flex:1;
  background:transparent;
}

/* Button */
button{
  width:100%;
  padding:12px;
  margin-top:15px;

  border:none;
  border-radius:12px;

  background:#00674B;
  color:#fff;

  font-weight:700;
  cursor:pointer;

  transition:0.3s;
}

button:hover{
  background:#004d38;
  box-shadow:0 0 10px rgba(0,103,75,0.5);
}

/* Mobile */
@media(max-width:600px){
  .title-main{font-size:34px}
  .logo{width:180px}
}

/* ===== eBay multi-color styling ===== */
.ebay {
  font-weight: 600;
}

.ebay span:nth-child(1) { color: #E53238; }
.ebay span:nth-child(2) { color: #0064D2; }
.ebay span:nth-child(3) { color: #F5AF02; }
.ebay span:nth-child(4) { color: #86B817; }