@import url('https://fonts.googleapis.com/css?family=Raleway');

body {
	position:relative;
	margin:0;
	font-family: 'Raleway', sans-serif;
	min-height:100vh!important;
	background-image:url(../uploads/images/bg-login.jpg);
	background-size:cover;
	background-position:center center;
}

::placeholder {
	color:#f8f9fa;
}

body:before {
	content:'';
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:rgba(255,255,255,.9);
}

.login .panel {
	background-image: linear-gradient(180deg, #1e3c72, #2a5298);
	/*background-image:linear-gradient(180deg, #7579ff, #b224ef);*/
	border-radius:10px;
}

.login .panel .icon {
	text-align:center;
}

.login .panel .icon>i {
	display: inline-flex;
    align-items: center;
    justify-content: center;
	width:120px;
	height:120px;
	font-size:60px;
	padding:20px;
	border-radius:100%;
	background-color:#fff;
	color:#1e3c72;
}

.login .panel .name {
	text-align:center;
	font-size:28px;
	color:#fff;
	text-transform:uppercase;
	font-weight:bold;
	letter-spacing:2px;
}

.login .panel .input-name {
	text-align:center;
}

.login .panel form .col {
    display: flex;
    align-items: center;
	position:relative;
}

.login .panel form .input-border {
	position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255,255,255,.3);
	border-left:0 solid #fff;
	overflow:hidden;
	transition:.4s;
}

.login .panel form .col .input-border:after {
	content: "";
    display: block;
    height: 2px;
    width: 0;
    background: #fff;
	transition:.4s;
}

.login .panel form .col.focus .input-border:after {
	width: 100%;
}

.login .panel input {
	width:100%;
	background:none;
	box-shadow: none;
	outline:none;
	border:none;
	font-size:18px;
	color:#fff;
	padding-left:30px;
}

.login .panel input:focus {
	padding-left:5px;
}

.login .panel input+i {
	position:absolute;
	bottom:14px;
	color: #fff;
	transition:.4s;
}

.login .panel input:focus+i {
	bottom: 50px;
}

.login .input-submit {
	justify-content:center;
}

.login .input-submit button {
	position:relative;
	background-image:linear-gradient(0, #2a5298, #1e3c72);
    border: none;
	outline:none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: bold;
	overflow:hidden;
}

.login .input-submit button:hover {
	cursor:pointer;
	box-shadow:0 0 10px rgba(255,255,255,.5);
}

.login .input-submit button:after {
	content:"Login";
	display:flex;
	align-items:center;
	justify-content:center;
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:#fff;
	transition:.4s;
}

.login .input-submit button:hover:after {
	background:transparent;
	color:#fff;
}