/* Set for all browsers because iOS uses a standard highlight when clicking in the input field */
html, body {
    -webkit-tap-highlight-color: transparent;
}

input:focus {
    outline: none;
}

/* Removed border radius for all browser, because IOS uses a default radius */
input {
    border-radius: 0;
}

.overall {
    @media (min-width: 695px) {
        width: 40%;
        margin: auto;
    }
}

.content {
    z-index: 1;
    position: relative;
    margin-top: 30px;
}

.page-headline {
    text-align: center;
}

.request-user-input-overall {
    margin: 30px auto;
    border-bottom: 1px solid var(--oss-primary-color);
    width: 90%;
}

.request-user-input {
    border: none;
    font-size: 20px;
    width: 100%;
}

.request-user-input::placeholder {
    color: var(--oss-secondary-color);
}

.form-invalid::placeholder {
    color: #D21502 !important;
}

.password-input-overall {
    display: flex;
}

.password-input {
    @media (max-width: 694px) {
        width: 90%;
    }
}

.password-not-match-message {
    color: #D21502;
    width: 90%;
    margin: auto;
}

.password-input-no-margin {
    margin-bottom: 5px;
}

.password-eye-button {
    background-color: transparent;
    filter: var(--oss-svg-color);
    justify-content: flex-end;

    @media (min-width: 695px) {
        padding-right: 10px;
    }
}

.eye-closed {
    display: none;
}

.privacy-link {
    color: var(--oss-secondary-color);
    font-size: 15px;
    text-decoration: none;
    display: flex;
    justify-content: center;
}

.register-user-buttons {
    display: flex;
    justify-content: space-evenly;
    margin: 40px 0 20px 0;
}

.register-user-button {
    width: 130px;
    font-size: 18px;
}

.waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: clip;
}