*{
    box-sizing: border-box;
}

body{
    margin:0px;
    border:0px;
    background: #fefefe;
}
.theme{
    background: #fefefe !important;
}
.theme-dark{
    background: #222222 !important;
}

.logo{
    position: absolute;
    top:calc(50% - 100px);
    left:calc(50% - 100px);
    width:200px;
    height:200px;
    background:url('../img/252-html.png') no-repeat;
    background-size: 100%;   
}

.ctn-logo{
    position: absolute;
    width:100px;
    height:100px;
    top:calc(50% - 50px);
    left:calc(50% - 50px);
    border-radius:20px;
    animation: anim-login 2s linear forwards;
}
.box-1{
    position: absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
}
.box-2{
    position: absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
}
.box-1 .line-1{
    position: absolute;
    top:0px;
    left:0px;
    width:100%;
    max-width:200px;
    height:40px;
    background: #fc9005;
    border-radius:20px;
    z-index:1;
}
.box-1 .line-2{
    position: absolute;
    top:0px;
    right:0px;
    width:40px;
    height:100%;
    max-height:200px;
    background: #fcf305;
    border-radius:20px;
    z-index:0;
}

.box-2 .line-1{
    position: absolute;
    bottom:0px;
    left:0px;
    width:40px;
    height:100%;
    max-height:200px;
    background: #fc9005;
    border-radius:20px;
    z-index:0;
}
.box-2 .line-2{
    position: absolute;
    bottom:0px;
    right:0px;
    width:100%;
    max-width:200px;
    height:40px;
    background: #fcf305;
    border-radius:20px;
    z-index:1;
}

/** Animation **/
/*@keyframes anim-login {
  0% {  	
    width:10px;
    height:10px;
    top:calc(50% - 5px);
    left:calc(50% - 5px);
  }
  50% {  	
    width:200px;
    height:200px;
    top:calc(50% - 100px);
    left:calc(50% - 100px);
    transform: rotate(-45deg);
  }
  80% {  	
    width:400px;
    height:400px;
    top:calc(50% - 200px);
    left:calc(50% - 200px);
    transform: rotate(-45deg);
  }
}*/

@keyframes anim-login {
  0% {  	
    width:400px;
    height:400px;
    top:calc(50% - 200px);
    left:calc(50% - 200px);
    transform: rotate(-45deg);
  }
  50% {  	
    width:200px;
    height:200px;
    top:calc(50% - 100px);
    left:calc(50% - 100px);
    transform: rotate(-45deg);
  }
  70% {  	
    width:10px;
    height:10px;
    top:calc(50% - 5px);
    left:calc(50% - 5px);
  }
  90%{
    box-shadow:0px 0px 20px rgba(255,255,255,0.2);
  }
  100%{
    box-shadow:0px 0px 40px rgba(255,255,255,0.4);
  }
}