
:root {
    --color-background: rgb(198, 226, 239);
    --color-background-primary: white;
    --color-background-secondary: rgb(228, 237, 241);
    --color-background-mute: rgb(205, 222, 230);
    --color-background-accent: red;
    --color: black;
    --color-accent: white;
    --border-radius: 0px;
    --font-family: 'Approachholtmann', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* --shadow: 5px 5px 10px 10px rgba(0, 0, 0, 0.3);     */
}

button.btn,
button.btn:hover:disabled {
    padding: 0.5em 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.5;
    border: 2px solid #000;
    background: none;
    color: black;
    transition: all 0.3s;

}

button.btn:hover:not(:disabled) {
    background: black;
    color: white;
}


button.btn-contrast,
button.btn-contrast:hover:disabled {
    border: 2px solid #fff;
    background: none;
    color: #fff;
}

button.btn-contrast:hover:not(:disabled) {
    background: white;
    color: black;
}


input:not([type='checkbox']),
textarea,
select,
.html-preview {
    border-radius: 0;
    background-image: none;
    border: 2px solid black;
    cursor: pointer;
    text-shadow: none;
    font-family: 'Approachholtmann', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.8rem;
    padding: 0.5em 1rem;
    color: black;
}

input:not([type='checkbox'])::placeholder,
textarea::placeholder,
select::placeholder {
    color: black;
}

input:not([type='checkbox']):hover,
textarea:hover,
select:hover {
    
}

input:not([type='checkbox']):focus,
textarea:focus,
select:focus {
    outline: none;
    border: 2px solid black;
}

textarea {
    resize: none;
}

.auth_wrapper, #loadingOverlay {
    background-color: white;
    background-image: url('../images/Holtmann_pattern-cross_black-10.svg');
    background-size: 40px;
    background-repeat: repeat;
    background-position: 0 0;
}


.auth {

    background: linear-gradient(66deg, #e15014 0%, #c81932 100%) 0% 0% no-repeat padding-box !important;
    color: var(--color-accent);

    h2 {
        white-space: nowrap;
    }

    input:not([type='checkbox']),
    textarea,
    select {
        border-radius: 0;
        background-image: none;
        background: rgba(255, 255, 255, 0.3);
        border: none;
        cursor: pointer;
        text-shadow: none;
        font-family: 'Approachholtmann', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 1.8rem;
        padding: 0.5em 1rem;
        color: #fff;
        
        option {
            background: #fff;
            color: #000;
        }
    }

    input:not([type='checkbox'])::placeholder,
    textarea::placeholder,
    select::placeholder {
        color: rgba(255, 255, 255, 0.62);
    }

    input:not([type='checkbox']):hover,
    textarea:hover,
    select:hover {
        background: #ffffff60;
    }

    input:not([type='checkbox']):focus,
    textarea:focus,
    select:focus {
        background: #ffffff60;
        outline: 2px solid white;
    }

    a {
        color: var(--color-accent) !important;
    }
}

