* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(120deg, #9b0389, #bc0205, #d5d359);;
  color: #fff;
}

/* Top login link */
.top-link {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 14px;
  color: #ccc;
}

.top-link a {
  color: #fff;
  text-decoration: underline;
}

/* Card */
.signup-card {
  width: 420px;
  background: #000;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Headings */
.signup-card h1 {
  text-align: center;
  margin-bottom: 8px;
  font-size: 36px;
}

.signup-card p {
  text-align: center;
  color: #aaa;
  margin-bottom: 28px;
  font-size: 14px;
}

/* Inputs */
.input-field {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: none;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
}

.input-field::placeholder {
  color: #888;
}

/* Primary button */
.btn-primary {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: #fff;
  color: #000;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
}

/* Divider */
.divider {
  height: 1px;
  background: #222;
  margin: 20px 0;
}

/* Social buttons */
.social-btn {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #333;
  background: transparent;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social-btn:hover {
  background: #111;
}
  

/* =========================
   📱 SMALL DEVICES (PHONES)
========================= */
@media (max-width: 480px) {

  body {
    padding: 15px;
  }

  .signup {
    position: static;
    text-align: center;
    margin-bottom: 15px;
  }

  .login-container {
    padding: 30px 20px;
  }

  .login-container h1 {
    font-size: 26px;
  }

  .login-container p {
    font-size: 13px;
  }

  .login-btn,
  .social-btn {
    font-size: 14px;
    padding: 12px;
  }
}

/* =========================
   📱 TABLETS
========================= */
@media (max-width: 768px) {

  .login-container {
    max-width: 380px;
  }

  .login-container h1 {
    font-size: 28px;
  }
}
