
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.view {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 60vh;
}

.signup-container {
  width: 430px;
  height: 680px;
  position: relative;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  background-color: #fff;
  overflow: hidden;
}

.signup-container h1 {
  position: absolute;
  font-size: 40px;
  top: 40px;
  text-align: center;
  width: 100%;
  padding: 20px;
}

.signup-container .indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 50px;
  top: 160px;
}

.indicator .step {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 5px;
}

.step div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 30px;
  height: 30px;
  border: 2px solid black;
  border-radius: 50%;
  font-weight: bold;
}

.step1 div {
  border-color: #043c00;
  background: #043c00;
  color: #fff;
  transition: all 0.4s ease;
}

.step span {
  font-weight: 600;
  text-align: center;
  transition: all 0.4s ease;
}

.step1 span {
  color: #043c00;
}

.indicator .line {
  width: 30px;
  height: 30px;
  border-top: 4px solid black;
  transition: all 0.4s ease;
}

.signup-container .signup-panel {
  width: 1720px;
  height: 100%;
  position: relative;
  left: 0;
  top: 0;
  transition: all 0.4s ease;
}

.page1, .page2, .page3, .page4 {
  position: absolute;
  height: 100%;
  width: 430px;
}

.page1 {
  left: 0;
}

.page2 {
  left: 25%;
}

.page3 {
  left: 50%;
}

.page4 {
  left: 75%;
}

.signup-form {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  top: 90px;
}

.signup-form .form-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  width: 80%;
  height: 50px;
  margin: 15px 0;
}

.form-group input {
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 5px;
  padding: 0 20px;
  font-size: 17px;
  font-weight: 500;
  outline: none;
  border: 1px solid black;
}

.form-group label {
  position: absolute;
  pointer-events: none;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: #fff;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 500;
  padding: 3px;
  color: #999;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label {
  color: black;
  top: 0%;
  transform: translateY(-50%) scale(0.85);
}

.signup-form .signup-btn-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 80%;
  height: 50px;
}

.signup-btn-group .signup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #043c00;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  width: 48%;
  height: 100%;
  padding: 10px;
  margin-top: 20px;
  font-size: 17px;
  font-weight: 500;
  border-radius: 6px;
  outline: none;
  border: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.signup-btn-group .signup-btn-f {
  width: 100%;
}

.signup-btn-group .signup-btn:active {
  transform: scale(0.95);
}

.signup-btn-group .signup-btn:hover {
  opacity: 0.8;
}

#one:checked ~ .signup-container .signup-panel {
  left: -430px;
}

#two:checked ~ .signup-container .signup-panel {
  left: -860px;
}

#three:checked ~ .signup-container .signup-panel {
  left: -1290px;
}

#one, #two, #three {
  display: none;
}

#one:checked ~ .signup-container .indicator .line1,
#two:checked ~ .signup-container .indicator .line2,
#three:checked ~ .signup-container .indicator .line3 {
  border-color: #043c00;
}

#one:checked ~ .signup-container .indicator .step2 div,
#two:checked ~ .signup-container .indicator .step3 div,
#three:checked ~ .signup-container .indicator .step4 div {
  border-color: #043c00;
  background: #043c00;
  color: #fff;
}

#one:checked ~ .signup-container .indicator .step2 span,
#two:checked ~ .signup-container .indicator .step3 span,
#three:checked ~ .signup-container .indicator .step4 span {
  color: #043c00;
}

.plan-selector {
  display: flex;
  flex-direction: column;
}

.plan-container {
  background-color: #24262b;
  color: #fff;
  border-radius: 6px;
  margin: 2px;
  padding: 5px;
  height: fit-content;
  overflow: hidden;
}

.plan-show {
  display: grid;
  align-items: center;
  grid-template-columns: 380px auto;
}

.plan-title {
  display: inline-flex;
  align-items: center;
}

.plan-info {
  height: 0px;
  transition: all 0.4s ease;
}

.plan-overview {
  margin-top: 5px;
  font-size: 18px;
}

.confirmations {
  color: #fff !important;
  background-color: #24262b !important;
  font-size: 16px !important;
  white-space: pre-wrap;
  margin: 0 !important;
  padding: 0 !important;
}

.detail-box {
  height: 200px;
  width: 375px;
  background-color: #24262b;
  border-radius: 6px;
}

.checkbox-label {
  color: #999 !important;
  top: 8px !important;
  transform: unset !important;
}

.extra {
  margin-top: 1px !important;
}