/*
**
** login
**
*/
#login
{
	position: relative;

	display: flex;
	flex-direction: column;
	align-items: center;

	flex-grow: 1;
	min-height: calc(100vh - var(--sbc-header-height));

	background-image: url('/images/DJI_0946.JPG');
/*	background-image: url('/images/DJI_0935.JPG');*/
/*	background-image: url('/images/DJI_0762.JPG');*/
/*	background-image: url('/images/DJI_0750.JPG');*/
/*	background-image: url('/images/DJI_0707.JPG');*/
/*	background-image: url('/images/DJI_0614.JPG');*/

	background-position: center;
	background-size: cover;

	justify-content: center;
}
#login:before
{
	content: "";
	display: block;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #1b272cdb;
	background-color: rgba(0, 0, 0, .4);
}
#login > div.card
{
	display: flex;
	flex-direction: column;
	width: 480px;	
	position: relative;
	z-index: 4;
	padding: 2rem;
	background-color: rgba(255, 255, 255, .8);
}
#login > div.card > h1
{
	margin-top: 0;
}
#login > div.card > div.row
{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: .5rem;
}
#login > div.card > div.row > input
{	
	flex: 1 1 auto;
	display: block;
	margin-right: 1rem;
	margin-bottom: 0;
	font-size: 12px;
	text-align: center;
}
#login > div.card > div.row > div.tooltip
{
	position: relative;
	font-size: 1rem;
	color: black;
	cursor: pointer;
}
#login > div.card > div.row > div.tooltip:hover
{
	color: var(--sbc-red);
}
#login > div.card > div.row > div.tooltip > div.text
{
	display: none;
  	position: absolute;
  	z-index: 1;
  	width: max-content;
  	max-width: 300px;
  	background-color: black;
	color: white;
  	padding: .75rem 1rem;
  	border-radius: 4px;
	font-size: 13px;
	line-height: 1.15;
}
#login > div.card > div.row > button
{
	display: block;
	margin: 0;
	padding: 0;
	font-size: 1.1rem;
	background-color: transparent;
	color: black;
}
#login > div.card > div.row > button:hover
{
	box-shadow: none;
}
#login > div.card > div.row > button > i.bi-question-circle:hover
{
	color: var(--sbc-blue);
}
#login > div.card > div.row > button > i.bi-eye-fill
{
	color: var(--sbc-blue);
}
#login > div.card > div.register-forgot
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 1rem 0rem 2rem;
}
#login > div.card > div.register-forgot > a
{
	font-size: 14px;
}
/*
**
** App: width <= 800px
**
*/
@media (max-width: 800px)
{
	#login
	{
		background-image: none;
		padding: 1rem 1.5rem; 
	}
	#login:before
	{
		display: none;
	}
	#login > div.card
	{		
		background-color: transparent;
		padding: 0;
		width: 100%;
	}
}
/*
**
** App: width <= 1204px
**
*/
@media (max-width: 1204px)
{
}