@import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display');
@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Mono:100,200,300,400,600,700');
@font-face {
    font-family: 'Lotuscoder';
    src: url('../font/Lotuscoder.woff2') format('woff2'),
        url('../font/Lotuscoder.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lotuscoder';
    src: url('Lotuscoder-bold.woff2') format('woff2'),
        url('Lotuscoder-bold.woff') format('woff');
    font-weight: bold;
    font-display: swap;
}
        
body {
	margin: 0;
	padding: 0;
	max-width: 100%;
	background-color: #FFF;
	font-family: 'Lotuscoder', monospace;
	font-size: 0.9rem;
	color: #2D393D;
	letter-spacing: -0.1px;
}
	
h1 {
    font-family: 'Major Mono Display', monospace;
	font-size: 3.0rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.2;
    -webkit-text-stroke: 2px;
    margin: 0;
    text-align: center;
}

p { margin: 0; }


img { 
    width: 100%; 
    margin-top: 2.0rem
}

form {
    margin-top: 4.0rem;
    background: #FFF;
    text-align: center;
    padding: 2.0rem 4.0rem 4.0rem;
    border: solid 1.0rem #FFF;
    box-shadow: 
        0px 0px 16px rgba(0,0,0,0.1),
        inset 0px 0px 0px 1px #CEDADD;
}
input[type=text], [type=password] {
	width: 50%;
	margin-top: 2.0rem;
    background: transparent;
    font-family: 'IBM Plex Mono', monospace;
    color: #2D393D;
	font-size: 1.0rem;
	border: none;
	border-bottom: solid 1px #CEDADD;
	text-align: center;
    padding: 0.5rem 0;
	outline: none;
}
input:focus {
	border-bottom: solid 1px #2D393D;
}

::-webkit-input-placeholder { /* Edge */
	color: #CEDADD;
}
:-ms-input-placeholder { /* Internet Explorer */
	color: #CEDADD;
}
::placeholder {
	color: #CEDADD;
}

button {
    position: relative;
    min-width: 50%;
    font-family: 'IBM Plex Mono';
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
	color: #2D393D;
    text-transform: uppercase;
    text-align: center;
	background-color: #FFF;
    padding: 1.0rem 2.0rem;
    box-shadow: 0px 0px 8px rgba(0,0,0,0.25);
    z-index: 0;
    border: 0;
    border-radius: 4px;
    outline: none;
    margin-top: 2.0rem;
}
button:before {
    content: '';
    background: linear-gradient(45deg, #D684D3, #26C9C9, #FFD300, #5ABE7B, #26C9C9, #D684D3);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(8px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 30s linear infinite;
    opacity: 0;
}
button:hover:before {
    opacity: 1;
}
button:active {
    color: #000;
    background: #000;
    outline: none;
}
button:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #FFF;
    left: 0;
    top: 0;
    border-radius: 4px;
    cursor: pointer;
}



/*** TITLE BAR ***/

.title-wrap {
	margin-top: 0;
	width: 100%;
	padding: 1.0rem 0;
    text-align: center;
}

.title {
	font-family: 'Major Mono Display';
	font-size: 1.0rem;
	line-height: 1.1;
    -webkit-text-stroke: 1px;
    vertical-align: middle;
}

img.img-title {
    display: inline;
    margin-top: 0;
    width: 2.0rem;
    padding: 0.25rem;
	border: none;
    vertical-align: middle;
}

.container {
	width:100%;
	height: 100vh;
    display: flex;
    flex-wrap: wrap;
}

.side {
    flex: 1;
    width: 50%; 
    padding: 8.0rem 4.0rem 8.0rem 8.0rem;
}

.content {
    flex: 1;
    width: 60%;
    text-align: center;
    padding: 8.0rem 8.0rem 8.0rem 4.0rem;
}

@media (max-width: 1024px) {
    img {
        display: block;
        width: 50%;
        margin-left: auto; margin-right: auto;
    }
    .side, .content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 5%;
    }
}


.caption {
    margin-top: 1.0rem;
    font-family: 'Lotuscoder', serif;
    font-size: 0.8rem;
    color: #8DA2A8;
    letter-spacing: 0px;
}
