* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

body {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(
    to bottom,
    #0b0c41,
    #550b69f3,
    rgba(160, 73, 231, 0.74)
  );
  display: flex;
  justify-content: center;
  align-items: center;
}

.Container {
  background-color: #fafaff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 320px;
  overflow: hidden;
}

.header {
  background-color: #f3f3f3;
  padding: 12px;
}

.header h2 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: #333;
}

.header p {
  font-size: small;
}

.form {
  padding: 10px;
}

.form-control {
  margin-bottom: 10px;
  padding-bottom: 20px;
  position: relative;
}

.form-control label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.8rem;
  color: #1a1919;
  font-weight: 400;
  margin-bottom: 5px;
}

.form-control input {
  border: 1px solid #bfc0eb;
  display: flex;
  border-radius: 10px;
  font-size: 14px;
  width: 100%;
  padding: 10px;
  margin-bottom: -10px;
}

.form-control i {
  position: absolute;
  top: 45px;
  right: 10px;
  visibility: hidden;
}

.form-control small {
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
}

.form button {
  background-color: #ff09ff;
  border: 2px solid #eee;
  color: #eff;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  border-radius: 10px;
  padding: 10px;
}
