@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Roboto', sans-serif;
}
:root{
  --primary-color: #E6E6E6;
  --secondary-color: #0d3073;
}

body {
  background: #f2f2f2;
  color: #666;
  font-size: 14px;
}

section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 400px;
  width: 90%;
  padding: 20px;
  box-shadow: 0px 0px 20px #00000020;
  border-radius: 8px;
  background-color: white;
}
.step {
  display: none;
}

.step.active {
  display: block;
}

.input-container {
  display: flex;
  width: 100%;
  margin-bottom: 15px;
}

.icon {
  background: var(--primary-color);
  padding: 10px;
  color: var(--secondary-color);
  min-width: 30px;
  text-align: center;
}

.input-field {
  all:unset;
  background: #E6E6E6;
  width: 100%;
  padding: 10px;
  outline: none;
  border: none;
}

.input-field:focus {
  border: none;
}

.show_password{
  background-color: #E6E6E6;
  outline: none;
  border: none;
  padding: 0 0.8rem;
  color: var(--secondary-color);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
}

.send-code{
  background-color: transparent;
  color: var(--secondary-color);
  font-weight: 600;
  text-align: left;
  text-decoration: underline;
  cursor: pointer;
  border: none;
}
.ab{
    color: white;
    text-decoration: none;
}
.send-code:disabled{
  color: rgb(71, 71, 71);
}

.error{
  background-color: #feeff6;
  color: #cd2b31;
  max-width: 30rem;
  min-height: 3rem;
  font-size: 0.9rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid #ebccd1;
  border-radius: 4px;
  flex-wrap: wrap;
  overflow-wrap: break-word;
  text-overflow: clip;
  word-wrap: break-word;
  align-items: center;
  display: flex;

}

.container_button{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 0.8rem;
}


.container_button .next-btn, .submit-btn{
  background-color: var(--secondary-color);
  color: white;
  height: 2rem;
  padding: 0.2rem 1rem;
  flex-wrap: wrap;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 999999px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.container_button .previous-btn{
  background-color: rgb(230, 230, 230);
  color: rgb(71, 71, 71);
  height: 2rem;
  padding: 0.2rem 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: 0.4rem 0.8rem;
  text-decoration: none;
  border-radius: 999999px;
  border: none;
  text-transform: uppercase;
}

button.previous-btn {
  float: left;
}

ul.password_step{
  list-style: none;
  position: relative;
}

ul.password_step li{
  font-size: 12px;
  margin-left: 0.8rem;
}

ul.password_step{
  list-style: none;
  position: relative;
  margin: 0.5rem 0;
}

ul.password_step li::before {
  content: "►";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: var(--secondary-color); /* Change the color */
  font-weight: 100; /* If you want it to be bold */
  font-size: 10px;
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1.4em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}

.container_steps{
  width: 100%;
  align-items: center;
  justify-content: space-between;
  display: flex;
}

.container_steps hr{
  background-color: var(--primary-color);
  width: 100%;
  height: 0.01rem;
  border: none;
}

.container_steps .step_circle{
  background-color: var(--primary-color);
  min-width: 2rem;
  min-height: 2rem;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 9999999px
}

.container_steps .step_circle.step_active{
  background-color: var(--secondary-color);
  color: white;
}

.container_checkbox{
  min-width: 100%;
  display: flex;
  font-size: 12px;
  text-transform: uppercase;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.container_checkbox div{
  justify-content: space-between;
  align-items: center;
  display: flex;
  margin: 0.2rem 0;
}

.container_checkbox div label{
  margin-left: 0.2rem;
  cursor: pointer;
}
.container_checkbox div input[type="radio"]{
  background-color: white;
  min-width: 1.3em;
  min-height: 1.3em;
  border-radius: 50%;
  vertical-align: middle;
  border: 1px solid var(--secondary-color);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}

.container_checkbox div input[type="radio"]:checked {
  background-color: var(--secondary-color);
}


input[type=number] {
  -moz-appearance:textfield; /* Firefox */
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}