/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Container */
.signup-container {
  position: relative;
  width: 380px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

/* Title and small link text */
.signup-box h2 {
  font-size: 26px;
  color: #333;
  margin-bottom: 5px;
}

.login-text {
  color: #777;
  margin-bottom: 20px;
  font-size: 14px;
}

.login-text a {
  color: #f25c43;
  text-decoration: none;
}

/* Labels and Inputs */
form label {
  display: block;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
}

form input {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 0.6rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Referral text */
.referral {
  font-size: 1rem;
  color: #777;
  margin-bottom: 1.3px;
}

.continue-button {
  color: white;
  text-decoration: none;
}
.continue-btn {
  width: 100%;
  background-color: #f25c43;
  color: #fff;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: 0.3s;
}

.continue-btn:hover {
  background-color: #e14c34;
}

/* Policy */
.policy {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #777;
  line-height: 1.4;
}

.policy a {
  color: #f25c43;
  text-decoration: none;
}

.signup-image {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.signup-image img {
  width: 3.9rem;
  height: 3.9rem;
  border-radius: 50%;
}
