
h1 {
    text-align: center;
    font-weight: 500;
    padding-bottom: 32px;
}
.form-input {
    height: 100%;
    width: 100%;
    padding: 0 0 0 16px;
    border: 1px rgba(0, 0, 0, 0) solid;
    border: none;
    outline: none;
    border-radius: 8px;
    background-color: var(--secondary-color);
    transition: 300ms;
    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;
}
.form-wrap input[type="submit"] {
    height: 50px;
    padding: 0 16px;
    margin-right: 20px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    background-color: var(--main-color);
    color: white;
    transition: 300ms;
    cursor: pointer;
}
input[type="submit"]:hover {
    color: white;
    background-color: var(--main-color-darker);
}
a {
    color: black;
}
.text-before {
    margin-bottom: 20px;
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .container {
        width: 87%;
    }
    .form-wrap {
        width: 100%;
    }
    .slide-input {
        width: 70%;
    }
    .field-submit {
        width: 30%;
    }
}