@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");

:root {
  --white: #fff;
  --black: #1c2b2d;
  --blue: #31326f;
  --light-blue: #005490;
  --color-primary: #9d0191;
  --color-sec: #db6400;
  --grey: #eee;
  --dark-grey: #222831;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-family: "Open Sans", sans-serif;
}

p {
  font-size: 1.6rem;
  line-height: 1.5;
}

img {
  width: 100%;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Start here */
body {
  background: #1e9df7;
}

.box {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  background: var(--white);
  padding: 2rem;
  border-radius: 3px;
}

.steps {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
  border-bottom: 1px solid #cfd2d4;
}

.steps p{
  background: #cfd2d4;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

form {
  overflow: hidden;
}

.form-item {
  margin: 1.5rem 0;
  display: none;
  animation: slide-in 0.5s ease;
}

@keyframes slide-in {
  0% {transform: translateX(50rem);}
  100% {transform: translateX(0%);}
}

.form-item input {
  margin-bottom: 1rem;
  padding: 8px;
  font-size: 1.4rem;
}

.btn {
  margin-right: 1rem;

}