﻿/* auth */
.auth-fullscreen {
		height: 100%;
		height: 100vh;
		position: relative;
		overflow: hidden;
		background: radial-gradient(rgba(var(--theme-default),1),#111);
  -webkit-overflow-Y: hidden;
  -moz-overflow-Y: hidden;
  -o-overflow-Y: hidden;
  overflow-y: hidden;
  -webkit-animation: fadeIn 1 1s ease-out;
  -moz-animation: fadeIn 1 1s ease-out;
  -o-animation: fadeIn 1 1s ease-out;
  animation: fadeIn 1 1s ease-out;
}
.auth-right-content {
		background: #fff;
		width: 350px;
		padding: 35px;
		position: absolute;
		top: 0px;
		bottom: 0px;
		right:0px;
}
.auth-center-content {
		height: 100%;
		height: 100vh;
		display: flex;
		justify-content: center;
		align-items: center;
		overflow:hidden;
		background: radial-gradient(rgba(var(--theme-default),1),#111);
  -webkit-overflow-Y: hidden;
  -moz-overflow-Y: hidden;
  -o-overflow-Y: hidden;
  overflow-y: hidden;
  -webkit-animation: fadeIn 1 1s ease-out;
  -moz-animation: fadeIn 1 1s ease-out;
  -o-animation: fadeIn 1 1s ease-out;
  animation: fadeIn 1 1s ease-out;
}
.auth-center-outer-content {
		padding:50px;
		width:400px;
		background:#fff;
		display:none;
		border-radius:5px;
}
.auth-left-content {
		background: #fff;
		width: 350px;
		padding: 35px;
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		-webkit-transition: all 1s ease;
		-moz-transition: all 1s ease;
		-o-transition: all 1s ease;
		transition: all 1s ease;
}
.auth-signup{
		padding-top:20px;
		font-size:14px;
		margin-top:20px;
}
.auth-left-name{
		position:absolute;
		top:100px;
		left:450px;
		font-size:35px;
		color:#fff;
		letter-spacing:1px;
		z-index:1;
}
.auth-left-welcome{
		position:absolute;
		top:160px;
		left:420px;
		padding:30px;
		background:rgba(255,255,255,.03);
		width:100%;
}
.auth-welcome-msg {
		font-size: 18px;
		color: rgba(255,255,255,.6);
		font-style:italic;
		line-height:40px;
}
.auth-right-slide {
		padding-top: 50px;
}
.auth-right-name {
		font-size: 35px;
		color: #fff;
		letter-spacing: 1px;
		padding-left:30px;
}
.auth-info {
		margin-top:20px;
		padding: 30px;
		background: rgba(255,255,255,.03);
}
.auth-info-text {
		font-size: 25px;
		text-transform: uppercase;
		letter-spacing: 2px;
		color: rgba(255,255,255,.2);
}
.bfooter {
		font-size: 12px;
		position: fixed;
		bottom: 10px;
		color: #fff;
		left:30px;
}
.light {
    position: absolute;
    width: 0px;
    opacity: .75;
    background-color: white;
    box-shadow: #e9f1f1 0px 0px 20px 2px;
    opacity: 0;
    top: 100vh;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
}