* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #fcd7d4;
  color: #3e2f2f;      
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  width: 100%;
  max-width: 600px;
}

.title {
  font-size: 70px;
  font-weight: 900;
  color: #e75b4b;
  text-shadow: 1px 1px 2px #2e2e2e33;
  margin-bottom: 20px;
}

.title span {
  display: block;
}

.form-box {
  background: transparent;
  padding: 20px;
}

.form-box h2 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
}

.form-box p {
  font-size: 12px;
  margin-bottom: 20px;
}

.form-box a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.name-fields {
  display: flex;
  gap: 10px;
}

input {
  padding: 12px;
  border: none;
  border-radius: 5px;
  width: 100%;
  font-size: 14px;
}

.password-field {
  position: relative;
}

.eye-icon {
  position: absolute;
  right: 10px;
  top: 10px;
}

.btn {
  display: inline-block;
  text-align: center;
  background: red;
  color: black;
  padding: 12px;
  font-weight: 700;
  border-radius: 5px;
}

.btn:hover {
  background: #c71515;
}

/* 📱 Mobile (below 630px) */
@media screen and (max-width: 629px) {
  body {
    height: auto;
    padding: 30px 10px;
  }

  .title {
    font-size: 48px;
    letter-spacing: 3px;
  }

  .form-box {
    padding: 10px;
  }

  .name-fields {
    flex-direction: column;
    gap: 10px;
  }

  input {
    font-size: 13px;
    padding: 10px;
  }

  .btn {
    font-size: 14px;
    padding: 10px;
  }
}

/* 💻 Tablet (630px – 1014px) */
@media screen and (min-width: 630px) and (max-width: 1014px) {
  .title {
    font-size: 60px;
  }

  .container {
    max-width: 700px;
  }

  input {
    font-size: 15px;
    padding: 13px;
  }

  .btn {
    font-size: 15px;
    padding: 12px 16px;
  }
}

/* 🖥️ Desktop (1015px – 1920px) */
@media screen and (min-width: 1015px) and (max-width: 1920px) {
  .title {
    font-size: 70px;
  }

  .container {
    max-width: 600px;
  }

  input {
    font-size: 16px;
  }

  .btn {
    font-size: 16px;
    padding: 12px 20px;
  }
}

/* 🖥️💨 Larger Desktop (1921px and above) */
@media screen and (min-width: 1921px) {
  .title {
    font-size: 90px;
  }

  .container {
    max-width: 800px;
  }

  input {
    font-size: 18px;
    padding: 15px;
  }

  .btn {
    font-size: 18px;
    padding: 14px 24px;
  }
}





