.step {
  display: none;
}

body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Poppins", sans-serif;
    height: 100vh;
    width: 100vw;
    font-size: 1.5rem;
    background-color: #ffffff;
}

:root {
    --primary: #f6a600;
    --secondary: #002c73;
    --text: #4e4e4e;
    --gray: #9b9b9b;
}

img {
    margin-bottom: 1rem;
}

.actions {
    display: flex;
}

button {
    margin: 2.5rem 1rem;
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 2px solid var(--gray);
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    color: var(--text);
}
button:hover {
  background: var(--primary);
  border-color: var(--secondary);
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}

/* ---- Inputs styling ----- */
.form-group {
    position: relative;
    padding: 1rem 0 0;
    margin-top: 0.9rem;
}

.form-field {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 2px solid var(--gray);
    outline: 0;
    font-size: 1.3rem;
    color: var(--text);
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
}

.form-field::placeholder {
    color: transparent;
}

.form-field:placeholder-shown ~ .form-label {
    font-size: 1.3rem;
    cursor: text;
    top: 20px;
}

.form-label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: var(--gray);
}

.form-field:focus ~ .form-label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
}
.form-field:focus {
    padding-bottom: 6px;
    border-width: 3px;
    border-image: linear-gradient(to right, var(--primary), var(--secondary));
    border-image-slice: 1;
}

/* reset input */
.form-field:required,
.form-field:invalid {
    box-shadow: none;
}
