@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Chakra Petch', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #060c21;
}

/* Main container styled as .form */
.form {
  position: relative;
  background: #060c21;
  border: 1px solid #000;
  width: 350px;
  padding: 40px 40px 60px;
  border-radius: 10px;
  text-align: center;
}

.form::before {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  background: linear-gradient(315deg, #e91e63, #5d02ff);
  z-index: -1;
  transform: skew(2deg, 1deg);
  border-radius: 10px;
}

.form h2 {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 5px;
}

/* Styles for the form's inner container */
.input {
  margin-top: 40px;
  text-align: left;
}

/* Styles for each input group */
.inputBox {
  margin-top: 15px;
}

.inputBox label {
  display: block;
  color: #fff;
  margin-bottom: 5px;
  font-size: 16px;
  letter-spacing: 1px;
}

/* Styles for text inputs */
.inputBox input[type="number"],
.inputBox input[type="password"] {
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
  padding: 5px 15px;
  background: linear-gradient(315deg, #e91e63, #5d02ff);
  color: #fff;
  font-size: 16px;
  border-radius: 10px;
}

/* Styles for the submit button */
.inputBox input[type="submit"] {
  width: 100%;
  padding: 10px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  letter-spacing: 1px;
  font-weight: 600;
  background: linear-gradient(315deg, #e91e63, #5d02ff);
  color: #fff;
  border-radius: 10px;
}

.inputBox input[type="submit"]:hover {
  background: linear-gradient(315deg, #5d02ff, #e91e63);
}

.inputBox input[type="submit"]:active {
  color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(315deg, #e91e6271, #5f02ff8c);
}

/* Style for the error message or additional text */
.forgot {
  margin-top: 15px;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.forgot a {
  color: #ff0800;
  text-decoration: none;
}
