html, body {
    background: linear-gradient(to bottom, #313131, #5f5f5f);
    margin: 0;
}

header {
    width: 100%;
	margin: 0;
	height: 8em;
	box-shadow: 2px 11px 15px 3px rgba(0, 0, 0, 0.78);
	background-color: rgb(43, 43, 43);
}

subtitle {
    color: whitesmoke;
    font-size: 1.1em;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

fieldset {
    border-radius: 2em;
    border: 0.3em ridge rgb(70, 70, 70);
    background: linear-gradient(175deg, rgb(87, 87, 87), rgb(174, 174, 174));
    transition: all 0.3s ease;
    padding: 1.5em;
    box-shadow: 0.15em 0.15em 0.3em black;
    align-items: center;
    width: 80%;
    margin-top: 2em;
}
legend {
    text-align: center;
    font-style: italic;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: gainsboro;
    padding: 0.2em;
}


small {
    font-style: italic;
    color: whitesmoke;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.75em;
}

input {
    border-radius: 2em;
    background-color: whitesmoke;
    text-align: center;
    height: 2em;
    width: 100%;
    font-size: 1em;
    border-style: inset;
}
input:read-only {
    background-color: silver;
}
input::placeholder {
    font-style: italic;
}
input[disabled='disabled'] {
    background-color: silver;
    color: #2d2d2d;
    cursor: not-allowed;
}
input[type='checkbox'] {
    cursor: pointer;
    width: 1.5em;
}
input[type='checkbox']:disabled {
    cursor: not-allowed;
}

button {
    cursor: pointer;
    border-radius: 2em;
    border: 0.3em ridge rgb(53, 53, 53);
    box-shadow: 0.15em 0.15em 0.3em black;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 0.8em;
    padding-right: 0.8em;
    font-weight: bold;
    background: linear-gradient(175deg, #2d2d2d, #929292);
    transition: all 0.3s ease;
    color: rgb(213, 213, 213);
    width: 12em;
}
button:hover {
    background: linear-gradient(175deg, rgb(0, 96, 124), rgb(32, 137, 169));
    transition: all 0.3s ease;
    transform: scale(1.05);
    box-shadow: 0.15em 0.15em 0.3em whitesmoke;
}

label {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-style: italic;
    font-weight: bold;
}

a {
    cursor: pointer;
    text-decoration: underline;
    color: gainsboro;
}
a:hover {
    color: orange;
}

duty {
    color: red;
    font-weight: normal;
}

img[name='info'] {
    cursor: pointer;
}

h2 {
    color: rgb(0, 141, 0);
}


/* #############################
    KLASSEN
############################## */



/*Message Box Klasse*/
.flexdiv {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.msg {
    border: 0.7em;
    border-style: ridge;
    border-color: rgb(0, 96, 124);
    border-radius: 15px;
    background: linear-gradient(175deg, rgb(72, 131, 149), #91ceff);
    color: rgb(0, 49, 63);
    font-weight: bold;
    width: 20em;
    height: 10em;
    padding-top: 1em;
    padding-left: 0.3em;
    padding-right: 0.3em;
    box-shadow: 20px 20px 35px rgb(0, 96, 124);
    justify-content: center;
    visibility: hidden;
    position: absolute;
    z-index: 10000;
    text-align: center;
    display: flex;
}

/*MessageBox-Button*/
.msgBtn {
	font-weight: normal !important;
	background-color: rgb(0, 123, 160) !important;
	border: 0.4em ridge rgb(0, 96, 124) !important;
	border-radius: 7px !important;
	color: whitesmoke !important;
    padding: 0.3em !important;
    position: absolute !important;
    box-shadow: 5px 5px 10px black !important;
    bottom: 0.5em;  
    cursor: pointer;   
}
.msgBtn:hover {
    font-weight: normal !important;
	background-color: rgb(0, 96, 124) !important;
	border: 0.4em ridge rgb(0, 123, 160) !important;
	border-radius: 7px !important;
	color: white !important;
    padding: 0.3em !important;
    position: absolute !important;
    box-shadow: 5px 5px 10px white !important;
    bottom: 0.5em;
    
    transform: scale(1.1);
}

.pass-legend {
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: whitesmoke;
    padding: 0.2em;
}
.pass-fieldset {
    border-radius: 2em;
    border: 0.1em solid whitesmoke;
    width: max-content;
    height: max-content;
}


.warnbutton {
    cursor: pointer;
    color: darkred;
    background: rosybrown;
    border: 0.3em ridge darkred;
    box-shadow: 0.15em 0.15em 0.3em black;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 0.8em;
    padding-right: 0.8em;
    transition: all 0.3s ease;
    font-weight: bold;
    width: 12em;
}
.warnbutton:hover {
    box-shadow: 0.15em 0.15em 0.3em yellow;
    border: 0.3em ridge rosybrown;
    background: darkred;
    color: yellow;
}




/* #############################
    IDs
############################## */

#lblShowHash, #lblShowCustomerPass {
    background: rgb(51, 51, 51);
    color: darkorange;
    padding: 0.3em;
    border-radius: 2em;
    cursor: text;
}


/* ############################################################ */


@media (min-width: 768px) {
    fieldset {
        width: 30%;
    }

    input {
        width: 80%;
    }
}