﻿@import "variables.css";

.login {
    background-color: var(--karte-background-color);
    border: none;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-top: 20px;
    max-width: 500px;
    box-shadow: var(--login-shadow);
}

#reset-password {
    font-size: 14px;
    color: var(--basic-font-color) !important;
}

#reset-password:hover {
    color: #908f8f !important;
}

.logo {
    width: 100%;
    max-width: 200px;
    margin-top: 15px;
}

.login input[type=text] {
    background-color: var(--karte-background-color) !important;
    background-image: none !important;
    border-radius: var(--border-radius);
    padding: var(--button-padding);
    width: 100%;
    height: 45px;
    border: 1px solid var(--button-background-color);
    color: #333;
    font: var(--login-font);
    line-height: 25px;
}

.login input[type=password] {
    background: var(--karte-background-color) !important;
    border-radius: var(--border-radius);
    padding: var(--button-padding);
    width: 100%;
    height: 45px;
    border: 1px solid var(--button-background-color);
    color: #333;
    font: var(--login-font);
    line-height: 25px;
}

/*.login input[type=submit]*/
.login-button {
    background: var(--button-background-color);
    border-radius: var(--border-radius);
    padding: var(--button-padding);
    color: var(--button-color);
    border: none;
    cursor: pointer;
    font: var(--button-font);
    margin-top: 10px;
    margin-top: 20px;
    width: 100%;
    min-height: 38px;
    box-shadow: var(--button-shadow);
    line-height: 25px;
    text-transform: uppercase;
}

/*.login input[type=submit]:hover*/
.login-button:hover {
    background-color: var(--accordion-hover);
}

.login input[type=button]:hover {
    opacity: 0.8;
}

.login input[type=button]:active {
    opacity: 0.6;
}

.login input[type=text]:focus {
    outline: none;
    border: 1px solid rgb(0, 74, 153);
    border: 1px solid rgb(51, 180, 163);
}

.login input[type=password]:focus {
    outline: none;
    border: 1px solid rgb(0, 74, 153);
    border: 1px solid rgb(51, 180, 163);
}

.login input[type=button]:focus {
    outline: none;
}

::-webkit-input-placeholder {
    color: rgba(255,255,255,0.6);
}

::-moz-input-placeholder {
    color: rgba(255,255,255,0.6);
}

.fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 30px;
    z-index: 1030;
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--karte-background-color) inset !important;
}

/*Change text in autofill textbox*/
input:-webkit-autofill {
    -webkit-text-fill-color: var(--basic-font-color) !important;
}

.footer p {
    color: var(--basic-footer-color) !important;
}
