.slide {
    position: absolute;
    height: 100%;
    width: 0;
    top: 0;
    right: 0;
    padding-top: 16vh;
    background-color: white;
    transition: 300ms;
    overflow-x: hidden;
}
.arrow-back {
    height: 32px;
    position: absolute;
    font-size: 2em;
    cursor: pointer;
}
.slide-heading {
    text-align: center;
    font-weight: 500;
    padding-bottom: 32px;
}
.slide-input {
    width: 80%;
    padding: 0 0 0 16px;
    border: 1px rgba(0, 0, 0, 0) solid;
    border: none;
    outline: none;
    border-radius: 8px 0 0 8px;
    background-color: var(--secondary-color);
    transition: 300ms;
    height: 100%;
    font-size: 18px;
}
.form-wrap {
    width: 40%;
    margin: auto;
}
.field-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    height: 58px;
}
label {
    position: absolute;
    font-size: 18px;
    left: 16px;
    transition: 300ms;
    color: grey;
}
.focused label {
    transform: translateY(-18px);
    font-size: .75em;
}
.field-submit, #password-submit {
    background-color: var(--main-color);
    color: white;
    border-radius: 0 8px 8px 0;
    height: 100%;
    transition: 300ms;
    border: none;
    width: 20%;
    cursor: pointer;
    font-size: 18px;
}
#password-submit {
    height: 50px;
    padding: 0 16px;
    width: auto;
    border-radius: 8px;
}
a {
    color: black;
}
.slide-info, .text-before {
    margin-bottom: 20px;
}
input[type="password"] {
    border-radius: 8px;
    width: 100%;
}
#new-code-prompt {
    display: none;
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 991.98px) {
    .container {
        width: 87%;
    }
    .form-wrap {
        width: 100%;
    }
    .slide-input {
        width: 70%;
    }
    .field-submit {
        width: 30%;
    }
}