body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: white;
  background: linear-gradient(180deg, #2c0344 0%, #0077ff 100%);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

/* Container */
.container {
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

/* Step Navigation */
.steps {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.step {
  width: 60px;
  height: 40px;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.step.active {
  background: #fff;
  color: #2c0344;
}

/* Heading */
h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Recovery Phrase Inputs */
.inputs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.inputs input, .phone-input input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1) !important;
  color: white;
  font-size: 1rem;
}

.inputs input:focus {
  outline: none;
  border-color: #0077ff;
}

/* Restore Button */
.button {
  width: 250px;
  display: inline-block;
  padding: 15px 0px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  background: linear-gradient(90deg, #6a0dad, #0077ff);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.button:hover {
  filter: brightness(1.2);
}

/* Back Button */
.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.back-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.form-container {
  min-height: 90vh;
}

.phone-input{
  width: 50%;
}

.phone-input select{
  width: 25%;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-right: 15px;
}

.phone-input select option{
  background: transparent !important;
  color: #000 !important;
}

@media screen and (max-width: 768px) {
  .phone-input{
    width: 90% !important;
  }

  .phone-input select{
    width: 40% !important;
  }
}
