html, body, head {
    font-size: 18px !important;
    background-color: white !important;
}


p, option, td {
    color: black;
    font-weight: bolder;
}

input {
    max-width: 380px;
}

label {
    text-align: center;
    margin-bottom: 0px !important;
    padding-right: 0px !important;
    color: black !important;
}

.login-field {
    border-radius: 0px !important;
    border-top: black solid 3px !important;
    border-right: black solid 3px !important;
}

.login-button {
    border-radius: 0px !important;
    margin-top: 5%;
}

h3 {
    font-weight: bolder !important;
}

.link-button {
    color: #0d6efd !important;
    text-decoration: underline;
    font-size: 18px !important;
}

.card {
    padding-bottom: 20% !important;
}

footer {
    width: 100% !important;
    background-color: white !important;
    padding-right: 0px !important;
    padding-bottom: 2% !important;
}


.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 75%;
    left: 32%;
    transform: translateY(-50%);
    cursor: pointer;
}

/*min-width*/
@media (max-width: 768px) {
    html {
        font-size: 18px;
    }

    .password-container {
        position: relative;
    }

    .toggle-password {
        position: absolute;
        top: 77%;
        left: 3%;
        transform: translateY(-50%);
        cursor: pointer;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

[class*="col-"] {
    float: right;
    padding: 5px;
    /*border: 1px solid red;*/
}

.button {
    display: inline;
    min-width: 150px;
    font-size: large !important;
    margin: 10px;
    color: white !important;
}

.button-red {
    border-color: #FF0000 !important;
    background-color: #FF0000 !important;
}

.button-blue {
    border-color: #3A7AFE !important;
    background-color: #3A7AFE !important;
}

.button-green {
    border-color: #34C759 !important;
    background-color: #34C759 !important;
}

.button-yellow {
    border-color: #FF9500 !important;
    background-color: #FF9500 !important;
}

.button-grey {
    border-color: #847575 !important;
    background-color: #847575 !important;
}

.button-purple {
    border-color: #AF52DE !important;
    background-color: #AF52DE !important;
}

.button-black {
    border-color: #333333 !important;
    background-color: #333333 !important;
}

footer.fixed {
    position: fixed; 
    bottom: 0;
    right: 0;
}



