@charset "utf-8";
/* CSS Document */

#login {
	height: 86vh;
	background-color: WhiteSmoke;
}

#login > .row {
	height: 100%;
}

.login-input {
	margin-bottom: 2rem;
	border-bottom: 1px solid Silver;
}

.login-input i {
	position: relative;
	margin: 0 0.5rem;
	top: 0.6rem;
}

.login-input input {
	position: relative;
	width: 85%;
	margin-bottom: 0.5rem;
	background: rgba(0,0,0,0);
	font-weight: bold;
	border: none;
	outline: none;
}

::placeholder {
	font-size: 0.9rem;
	color: Gray;
}

input:focus::-webkit-input-placeholder {
    opacity: 0.5;
}

.material-icons.sm-icon { 
	position: relative;
	top: 0.2rem;
	font-size: 1rem;
}

#dv-forgot {
	text-align: right;
}
#dv-forgot span {
	font-size: 0.8rem;
	color: Silver;
}

#dv-forgot span:hover {
	color: Red;
	cursor: pointer;
}

#btn-submit {
	font-weight: bold;
	color: White;
}

#cdatalogin {
	display: flex;
	align-items: center;
	justify-content: center;
}

#datalogin {
	width: 100%;
}

#dv-header {
	display: flex;
	width: 100%;
	margin-bottom: 3rem;
}

#dv-header h1 {
	align-self: flex-start;
	width: 50%;
	font-weight: bold;
}

#dv-header span {
	align-self: flex-end;
	width: 50%;
	text-align: right;
	font-size: 0.9rem;
}

 #dv-submit {
	width: 100%;
	margin-top: 2rem;
	 text-align: right;
}

#dv-submit label {
	float: left;
	line-height: 3rem;
	font-size: 0.9rem;
	cursor: pointer;
}

#dv-submit button {
}

#imglogin {
	display: flex;
	padding-right: 0;
	align-items: center;
	justify-content: center;
}

.modal-content {
	border: none;
	background-color: rgba(255,255,255,0);
}

.spinner-border {
	width: 100px;
	height: 100px;
}

#spinner-img {
	position: absolute;
	width: 85px;
	top: 23px;
	right: 108px;
}

#datalogin form {
	position: relative;
}

#msg-email, #msg-paswd {
	position: absolute;
	padding: 0.1rem;
	font-size: 0.8rem;
	background-color: rgba(248,224,224,1.00);
	color: Crimson;
	border: 1px solid Crimson;
	border-radius: 4px;
}

#msg-email {
	display: none;
	top: 38%;
	left: 0;
}

#msg-paswd {
	display: none;
	top: 52%;
	left: 0;
}
/*--RESPONSIVE CSS-- */

/* Small screen (landscape phones, 576px and up) */
@media (max-width: 576px) {
	body {
		/*border: 1px solid red;*/
	}
	#imglogin {
		display: none;
	}
	#spinner-img {
		position: absolute;
		width: 85px;
		top: 23px;
		right: 172px;
	}
}

/* Medium screen (tablets, 768px and up) */
@media (min-width: 768px) {
	body {
		/*border: 1px solid lime;*/
	}
	#colspace {
		display: none;
	}
	#imglogin {
		display: flex;
		padding-right: 0;
		align-items: center;
		justify-content: center;
	}
	#spinner-img {
		position: absolute;
		width: 85px;
		top: 23px;
		right: 108px;
	}
}

/* Large screen (desktops, 992px and up) */
@media (min-width: 992px) {
	body {
		/*border: 1px solid blue;*/
	}
	#colspace {
		display: block;
	}
	#imglogin {
		display: flex;
		padding-right: 0;
		align-items: center;
		justify-content: center;
	}
	#spinner-img {
		position: absolute;
		width: 85px;
		top: 23px;
		right: 108px;
	}
}