html,
body {
    position: relative;
    min-height: 100vh;
    background-color: #fdfdfd!important;
}

.prevent-autofill {
    display: none;
}

.flex-column-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-row-center {
    display: flex;
    flex-direction: row;
    justify-content: center
}

.text-whitesmoke {
    color: whitesmoke;
}

.text-white {
    color: white;
}

a {
    text-decoration: none!important;
    color: var(--input-color-dark) !important;
    font-weight: 500 !important;
    font-size: 0.875rem!important;
    &:hover {
        text-decoration: none!important;
    }
}

.btn-primary {
    background: var(--input-color) !important;
    width: 200px !important;
    height: 45px !important;
}

.btn-secondary {
    color: #686E80 !important;
    background: #FFFFFF !important;
    width: 200px !important;
    height: 45px !important;
}

.btn-pop:focus {
    box-shadow: none!important;
}

#password-check-rules ul li {
    list-style-type:none!important;
    font-size: 13px!important;
    position:relative;
    padding-left: 17px;
}

#password-check-rules ul li i {
    font-size: 13px!important;
    position: absolute;
    top:4px;
    left: 0px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .flex-row-gap {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .flex-row-gap-reverse {
        display: flex;
        flex-direction: column-reverse;
        gap: 8px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .flex-row-gap {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .flex-row-gap-reverse {
        display: flex;
        flex-direction: column-reverse;
        gap: 8px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .flex-row-gap {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }
    .flex-row-gap-reverse {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}
