:root {
    --primary-color: #205e96;
}

.logo {
    width: 130px;
}

.top-header h1 {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.top-header h6 {
    font-size: 0.6rem;
}

.bottom-header h5 {
    font-size: 0.7rem;
}

.bottom-header {
    background-color: var(--primary-color);
}

.query {
    font-size: 0.7rem;
}

#fpmRegisterForm .input_box {
    width: 100%;
    border-width: 0 0 1px 0;
    border-style: solid;
    margin-top: 30px;
    position: relative;
}

#fpmRegisterForm .input_box input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 7px 0;
}

#fpmRegisterForm .input_box label {
    position: absolute;
    left: 0;
    font-size: 15px;
    top: 8px;
    pointer-events: none;
    transition: 0.2s;
    color: grey;
}

#fpmRegisterForm .input_box input:focus+label,
#fpmRegisterForm .input_box input:valid+label {
    top: -15px;
    font-size: 16px;
    color: var(--primary-color);
}

@media screen and (min-width: 768px) {
    .logo {
        width: 150px;
    }

    .top-header h1 {
        font-size: 2.0rem;
    }

    .top-header h6 {
        font-size: 1.0rem;
    }

    .bottom-header h5 {
        font-size: 1.25rem;
    }

    .query {
        font-size: 1rem;
    }
}