/* =========================================================
   SELL ON ERRANDSPACE MARKET
   ========================================================= */

* {
  box-sizing: border-box;
}


body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f8f9fa;
  color: #222;
}


/* =========================================================
   MAIN PAGE
   ========================================================= */

.seller-page {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px 20px;
}


/* =========================================================
   SELLER CARD
   ========================================================= */

.seller-card {
  width: 100%;
  max-width: 700px;

  text-align: center;

  background: #ffffff;

  padding: 45px 30px;

  border-radius: 12px;

  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   LOGO
   ========================================================= */

.seller-logo {
  width: 100px;
  max-width: 30%;

  margin-bottom: 15px;
}


/* =========================================================
   HEADING
   ========================================================= */

.seller-card h1 {
  margin: 0 0 18px;

  font-size: 30px;

  font-weight: 800;

  color: #222;
}


/* =========================================================
   TEXT
   ========================================================= */

.seller-question {
  margin: 0 0 6px;

  font-size: 20px;

  font-weight: 600;
}


.seller-description {
  margin: 0 0 28px;

  font-size: 16px;

  color: #666;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.seller-actions {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 12px;

  flex-wrap: wrap;

  margin-bottom: 28px;
}


.become-seller-btn,
.seller-login-btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-width: 155px;

  padding: 13px 22px;

  border-radius: 7px;

  text-decoration: none;

  font-size: 15px;

  font-weight: 700;

  transition: 0.2s ease;
}


/* Become Seller */

.become-seller-btn {
  background: #ff9f43;

  color: #ffffff;
}


.become-seller-btn:hover {
  background: #f28c28;

  transform: translateY(-1px);
}


/* Seller Login */

.seller-login-btn {
  background: #00b83f;

  color: #ffffff;
}


.seller-login-btn:hover {
  background: #009f37;

  transform: translateY(-1px);
}


/* =========================================================
   RETURN HOME
   ========================================================= */

.return-home {
  display: inline-block;

  color: #008f35;

  font-size: 15px;

  font-weight: 600;

  text-decoration: none;

  margin-top: 5px;
}


.return-home:hover {
  text-decoration: underline;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .seller-page {
    padding: 20px 15px;
  }


  .seller-card {
    padding: 35px 20px;
  }


  .seller-logo {
    width: 85px;
  }


  .seller-card h1 {
    font-size: 23px;
  }


  .seller-question {
    font-size: 18px;
  }


  .seller-description {
    font-size: 15px;
  }


  .seller-actions {
    flex-direction: column;
  }


  .become-seller-btn,
  .seller-login-btn {
    width: 100%;

    max-width: 260px;
  }

}