@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');
*, *:before, *:after {
    box-sizing: border-box;
}
body {
    /*min-height: 100vh;*/
    font-family: 'Raleway', sans-serif;
}
.login-container {
    position: inherit;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.login-container .top:before, .login-container:active .top:before, .login-container .bottom:before, .login-container:active .bottom:before, .login-container .top:after, .login-container:active .top:after, .login-container .bottom:after, .login-container:active .bottom:after {
    margin-left: 200px;
    transform-origin: -200px 50%;
    transition-delay: 0.2s;
}
.login-container .center, .login-container:active .center {
    opacity: 1;
    transition-delay: 0.2s;
}
.top:before, .bottom:before, .top:after, .bottom:after {
    content: '';
    display: block;
    position: absolute;
    width: 200vmax;
    height: 200vmax;
    top: 50%;
    left: 50%;
    margin-top: -100vmax;
    transform-origin: 0 50%;
    transition: all 0.2s cubic-bezier(0.445, 0.05, 0, 1);
    z-index: 10;
    opacity: 0.65;
    transition-delay: 0.3s;
}
.top:before {
    transform: rotate(45deg);
    background: #02251a;
}
.top:after {
    transform: rotate(135deg);
    background: #07a065;
}
.bottom:before {
    transform: rotate(-45deg);
    background: #06f0b5;
}
.bottom:after {
    transform: rotate(-135deg);
    background: #103a2a;
}
.center {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    margin-left: -200px;
    margin-top: -200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.445, 0.05, 0, 1);
    transition-delay: 0.2s;
    color: #0b4e38;
}
.center input {
    width: 100%;
    padding: 15px;
    margin: 5px;
    border-radius: 1px;
    border: 1px solid #0b573d;
    font-family: inherit;
}
