@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat&display=swap');

:root {
    --primary: #009BDE;
    --secondary: #F1884D;
    --gray200: #E9ECEF;
    --gray600: #6C757D;
    --gray300: #DEE2E6;

    --large: 32px;
    --medium: 24px;
    --small: 16px;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;

}

body {
    font-family: "Fira Sans", sans-serif !important;
    line-height: 1.67;
    margin:0;
}
.login-pf body {
    min-height: 100%;
    height: auto;
    width: 100%;
    background: white;
}



#kc-header {
    min-height: 56px;
    height: 56px;
    width: 100%;
    background: var(--primary);
}

#kc-header-wrapper {
    height: 100%;
    width: 1500px;
    justify-content: space-between;
    align-items: center;
    display: flex;
    margin: auto;
}

.kc-header-image {
    background: url("./img/km_long_logo.png") no-repeat left;
    background-size: auto 100%;
    height: 50px;
    width: 50%;
}

.kc-header-image:nth-of-type(2) {
    background: url("./img/verbraucherzemtrale.svg") no-repeat right;
    background-size: auto 100%;
    height: 30px;
    width: 50%;
}

#kc-content {
    height: auto;
    width: 1500px;
    margin: 40px auto auto;
}

#kc-content-wrapper {
    min-height: 100%;
    width: 100%;
    display: flex;
    gap:80px;
    flex-direction: column;
    align-items: center;
    height: auto;
}

.kc-form-input {
    margin-top: 10px;
}

.kc-form-text-input {
    width: 100%;
    padding: 10px;
    outline: 1px solid var(--primary);
    border-radius: 5px;
    border: 0;
}

.kc-form-text-input:focus {
    outline: 2px solid var(--primary);
}

.kc-form-label {
    font-size: 12px;
    padding-top: 10px;
    color: var(--primary);
}

#kc-form-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    margin-top: 20px;
    align-items: end;
}

#kc-form-options {
    font-size: var(--small);
}

#kc-form-button {
    font-size: var(--small);
    text-align: center;
    color: white;
    border: 0;
    backdrop-filter: none;
    padding: 15px 25px;
    border-radius: 5px;
    background: var(--primary);
    cursor: pointer;
}

#kc-form-button-reverse {
    font-size: var(--small);
    text-align: center;
    color: var(--primary);
    border: 1px var(--primary) solid;
    text-decoration: none;
    backdrop-filter: none;
    padding: 15px 25px;
    border-radius: 5px;
    background: white;
    cursor: pointer;
}

#kc-container {
    min-height: 100vh;
    height: auto;
    width: 100%;
}

#kc-container-wrapper {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}

#kc-footer {
    min-height: 75px;
    margin-top: 80px;
    height: 75px;
    width: 100%;
    background: var(--primary);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-self: end;
}

.kc-footer-content {
    display: flex;
    justify-content: center;
    align-items: end;
    color: white;
}

.kc-footer-content a {
    text-decoration: none;
    color: white;
    cursor: pointer;
}

.instruction {

}

@media only screen and (max-width: 1550px) {
    #kc-header-wrapper {
        width: 1200px;
    }

    #kc-content {
        width: 1200px;
    }
}

@media only screen and (max-width: 1250px) {
    #kc-header-wrapper {
        width: 900px;
    }

    #kc-content {
        width: 900px;
    }
}