/*

Created By:

 /$$      /$$ /$$$$$$$$   /$$    /$$$$$$  /$$$$$$$$ /$$$$$$                                      
| $$$    /$$$| $$_____/ /$$$$   /$$__  $$|_____ $$//$$$_  $$                                     
| $$$$  /$$$$| $$      |_  $$  | $$  \ $$     /$$/| $$$$\ $$     /$$$$$$$  /$$$$$$  /$$$$$$/$$$$ 
| $$ $$/$$ $$| $$$$$     | $$  |  $$$$$$$    /$$/ | $$ $$ $$    /$$_____/ /$$__  $$| $$_  $$_  $$
| $$  $$$| $$| $$__/     | $$   \____  $$   /$$/  | $$\ $$$$   | $$      | $$  \ $$| $$ \ $$ \ $$
| $$\  $ | $$| $$        | $$   /$$  \ $$  /$$/   | $$ \ $$$   | $$      | $$  | $$| $$ | $$ | $$
| $$ \/  | $$| $$$$$$$$ /$$$$$$|  $$$$$$/ /$$/    |  $$$$$$//$$|  $$$$$$$|  $$$$$$/| $$ | $$ | $$
|__/     |__/|________/|______/ \______/ |__/      \______/|__/ \_______/ \______/ |__/ |__/ |__/

█▀▀▀▀▀█ ▄▄█  ▄▀█▄ █▀▀▀▀▀█
█ ███ █ ▀▄  ▄ █▀  █ ███ █
█ ▀▀▀ █ █▀█ █ ▀█  █ ▀▀▀ █
▀▀▀▀▀▀▀ █ █▄▀ █▄█ ▀▀▀▀▀▀▀
▀▀▄█ ▄▀▀▄▄ ██▀▀  ▄██▀ ██▄
▄ ▄ ▄▀▀▄▄▄▄███  █▀▄ █▀ █▀
▀ ██▄▄▀▄  ▀█ ▄▀ ▄██▄ ▄▄▄█
▀▄▀█▀ ▀▀ █▄█ ▀▀▄   ▀▀   █
▀▀    ▀ █▀▄ ██▄▀█▀▀▀██▀ █
█▀▀▀▀▀█ ▀▄█▀█ ███ ▀ █ ▄█▀
█ ███ █ ▄█▀▄  ▄ ▀▀▀██▄▄ ▀
█ ▀▀▀ █ ▄▄▄   ▄ ▄▄ ▄█▀  ▀
▀▀▀▀▀▀▀ ▀▀  ▀   ▀▀▀▀▀  ▀▀

*/


:root {
    --color-main: #000000;
    --color-secondary: #ffffff;
    --color-grey: #999999;
    --min-height: 200px;
}

.dark-mode {
    --color-main: #ffffff;
    --color-secondary: #000000;
    --color-grey: #333333;
}

.toogle {
    position:relative;
    z-index:1000;
}

@media only screen  {

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	-webkit-touch-callout: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

:focus {
	outline: 0;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*{
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

div {
    margin:0;
    padding: 0;
}

::selection{
	color: var(--color-main);
	background-color: var(--color-secondary);
}

::-moz-selection{
	color: var(--color-main);
	background-color: var(--color-secondary);
}

/*-----------------------------------------------------------------------------------*/
/*	Body & Html
/*-----------------------------------------------------------------------------------*/

body, html {
    font-family: kobenhavn-sans, sans-serif;
    background-color: var(--color-main) !important;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
    color: var(--color-secondary) !important;
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
}
    
.wrap {
    display: flex;
	flex-direction: column;
    }

/*-----------------------------------------------------------------------------------*/
/*	Links ...
/*-----------------------------------------------------------------------------------*/

a {
	color: var(--color-secondary);
	}

a:active, a:hover, #nav a:hover {
	text-decoration:underline !important;
    color: var(--color-secondary) !important;
	}

    
/*-----------------------------------------------------------------------------------*/
/* Video
/*-----------------------------------------------------------------------------------*/
    
#myVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100vh;
    object-fit: cover;
    object-position: center top;
    object-position: 0px 0px;
}
    
/*-----------------------------------------------------------------------------------*/
/* Logo
/*-----------------------------------------------------------------------------------*/

h1 {
    float:left;
    width:calc(100% - 50px);
    text-align:left !important;
    margin:30px 0 0 50px !important;
}
    
h1:after {
    content:'DAM Bank';
    font-size:4em;
    font-family: kobenhavn-sans-stencil, sans-serif;
    font-weight: 700;
    font-style: normal;
}
    
.login h1 a {
	background-size: 200px;
	width: 200px;
    height: 200px;
    margin: 0 0 50px 50px !important;
    display:none;
	}

/*-----------------------------------------------------------------------------------*/
/*	Messages
/*-----------------------------------------------------------------------------------*/
    
h1, #login, footer {
    min-height: var(--min-height);
}
    
#login {
    padding:0 0 30px 0 !important;
    height:100%;
    width:100%;
    float:left;
    display:flex;
    flex-direction:column;
    align-content : stretch
    }
    
#loginform {
    z-index:0;
}

div.error, .login #login_error, .login .message {
    border: none !important;
    -webkit-box-shadow:none !important;
    box-shadow:none !important;
    text-align:left;
    color: var(--color-secondary);
    font-size: 1.2em;
    float:left;
    width:calc(100% - 50px);
    font-family: kobenhavn-sans, sans-serif;
    font-weight: 400;
    font-style: normal;
}
    
.login #login_error, .login .message, .login .success {
    background-color: transparent!important;
    line-height: 1.4em;
    padding: 0 0 0 50px;
    font-size:2em;
    }

    
/*-----------------------------------------------------------------------------------*/
/*	Form Label ...
/*-----------------------------------------------------------------------------------*/

.login label {
    color: var(--color-grey) !important;
    font-size: 1.5em !important;
    width:100%;
    font-family: kobenhavn-sans, sans-serif;
    font-weight: 200;
    font-style: normal;
}
	
	
/*-----------------------------------------------------------------------------------*/
/*	Form Frame Background ...
/*-----------------------------------------------------------------------------------*/
	
.login form {
    float:left !important;
    width: calc(100% - 40px)!important;
    padding:20px !important;
    margin:0;
    /*max-width: 600px !important;*/
    background-color: transparent!important;
    margin-left:auto !important;
    margin-right:auto !important;
    -webkit-box-shadow:none !important;
    box-shadow:none !important;
    margin-bottom:50px;
    border: none !important;
    border-radius: 0 !important;
    color:var(--color-secondary);
}

    
.login form p,.login form .user-pass-wrap {
    float:left;
    width:calc(50% - 60px);
    padding:0 30px;
    }
    
/*-----------------------------------------------------------------------------------*/
/*	Form
/*-----------------------------------------------------------------------------------*/

.login form .input, .login input[type=text] {
	font-size: 2.2em !important;
	height: 100px;
	padding: 0;
    border: 1px solid var(--color-main) !important;
    border-radius: 0px;
    font-family: kobenhavn-sans, sans-serif;
    font-weight: 700;
    font-style: normal;
	}
    
.login form .input, .login form input[type=checkbox], .login input[type=text] {
    background: var(--color-main) !important;
    color:var(--color-secondary);
    border-bottom: 1px solid var(--color-secondary) !important;
}

input[type=text], input[type=password]{
    border: 1px solid var(--color-secondary) !important;
}
    
input[type=text]:focus, input[type=password]:focus {
  box-shadow: none !important;
  /*background-color: #bbb !important;*/
}

input:-webkit-autofill, input#user_login.input,input#user_pass.input, input#user_login.input:focus, :focus   {
    -webkit-box-shadow: 0 0 0px 1000px var(--color-secondary) inset !important;
			box-shadow: 0 0 0px 1000px var(--color-secondary) inset !important;
}

input#user_login.input, input#user_pass.input, input#user_login.input:focus, :focus {
	-webkit-box-shadow: 0 0 0px 1000px var(--color-main) inset !important;
			box-shadow: 0 0 0px 1000px var(--color-main) inset !important;
}
    
input#password_protected_pass.input, :focus {
	-webkit-box-shadow: 0 0 0px 1000px var(--color-main) inset !important;
			box-shadow: 0 0 0px 1000px var(--color-main) inset !important;
}

input:-webkit-autofill, input::-webkit-autofill:focus, :focus, input::focus:-webkit-autofill, input:-webkit-autofill:focus,  input:focus:-webkit-autofill  {
	-webkit-box-shadow: 0 0 0px 1000px var(--color-secondary) inset !important;
			box-shadow: 0 0 0px 1000px var(--color-secondary) inset !important;
}
	
/*-----------------------------------------------------------------------------------*/
/*	Remember Me ...
/*-----------------------------------------------------------------------------------*/
    
.forgetmenot {
    display: none;
    }

.login form input[type=checkbox] {
    color: var(--color-secondary) !important;
	background: transparent !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	-webkit-transition: none !important;
	transition: none !important;
	border: 1px solid var(--color-main);
}

input[type=checkbox]:checked:before {
	color: var(--color-secondary) !important;
	}
	
input[type=checkbox]:focus {
	border: 1px solid var(--color-main);
	}

/*-----------------------------------------------------------------------------------*/
/*	Log In Button
/*-----------------------------------------------------------------------------------*/
    
.login .button-primary {
    float: none !important;
}
    
#login form p.submit {
    margin: 20px 0 0 0;
    padding:0 0 0 30px; 
    width:calc(50% - 30px);
    text-align:left;
    float:right;
    z-index:8888;
    /*position: relative;
    top: 50px;*/
    position: relative; 
    }
    
.login-password-protected #login form p.submit {
    padding:0; 
    width:calc(100%);
    text-align:center;
    }

.wp-core-ui .button-primary {
	background: var(--color-main) !important;
	border: 2px solid var(--color-secondary) !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	color: var(--color-secondary) !important;
	text-decoration: none;
	text-shadow: none !important;
	border-radius: 50% !important;
	font-size: 1em !important;
    text-transform: uppercase !important;
    width: 100px !important;
    height: 100px !important;
	}
	
.wp-core-ui .button-primary.focus, .wp-core-ui .button-primary.hover,
.wp-core-ui .button-primary:focus, .wp-core-ui .button-primary:hover {
    background: var(--color-secondary) !important;
	border: 2px solid var(--color-main) !important;
    color: var(--color-main) !important;
}

.wp-core-ui .button, .wp-core-ui .button-secondary {
    color: var(--color-secondary);
}

.wp-core-ui .button-secondary:hover, .wp-core-ui .button.hover, .wp-core-ui .button:hover {
    color: var(--color-secondary);
}

.js.login input.password-input, .js.login-action-rp form .input, .js.login-action-rp input[type=text] {
    color: var(--color-secondary);
}

/*-----------------------------------------------------------------------------------*/
/*	Back to Blog / Lost Password
/*-----------------------------------------------------------------------------------*/

.login #nav {
	font-size:1em;
	padding: 0 50px 0 0 !important;
	width: calc(25% - 50px) !important;
	margin-top:40px !important;
	text-align:right !important;
	color: var(--color-secondary) !important;
	-webkit-box-shadow:none !important;
	box-shadow:none !important;
    font-weight:400 !important;
    float:right;
    z-index:9999;
    position: relative; 
}

.login #backtoblog {
	display: none !important;
}

/*-----------------------------------------------------------------------------------*/
/*	Copyright Footer
/*-----------------------------------------------------------------------------------*/

footer {
    width:100%;
    float:left;
	} 
    
#copyright {
    font-size: 0.8em;
    color: var(--color-secondary);
    position:absolute;
    bottom: 25px;
	text-align: center;
	margin:0;
    padding:20px;
	line-height:1.2em;
    width: calc(100% - 40px);
    font-weight:400 !important;
	}
    
#hash-key {
    font-size: 0.8em;
    color: var(--color-secondary);
    position:absolute;
    bottom: 0px;
	text-align: center;
	margin:0;
    padding:20px;
	line-height:1.2em;
    width: calc(100% - 40px);
    font-weight:100 !important;
	}

}


@media screen and (max-width:1500px) {

.login form p,.login form .user-pass-wrap {
    float:left;
    width:calc(100% - 60px);
    padding:0 30px;
    }

}

@media screen and (max-width:600px) {
    
.login #nav {
	width: calc(100% - 20px) !important;
	padding-left: 20px !important;
}
    

}