/*!
	Main CSS
*/

/*     General overwrite     */
a{
	color: #2C93FF;
}
a:hover, a:focus {
	color: #1084FF;
}
a:focus, a:active,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
	outline : 0;
}

/*           Typography          */

p{
	font-size: 16px;
	line-height: 1.6180em;
}

.main{
	background-image: url('https://vpassets.infinityfree.net/welcome2017/background.jpg');
	background-position: center center;
	background-size: cover;
	height: auto;
	left: 0;
	min-height: 100%;
	min-width: 100%;
	position: absolute;
	top: 0;
	width: auto;
}
.cover{
	position: fixed;
	opacity: 1;
	background-color: rgba(0,0,0,.6);
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.cover.black{
	background-color: rgba(0,0,0,.6);
}

.logo-container .logo{
	overflow: hidden;
	border-radius: 50%;
	border: 1px solid #333333;
	width: 60px;
	float: left;
}

.main .logo{
	color: #FFFFFF;
	font-size: 56px;
	font-weight: 300;
	position: relative;
	text-align: center;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.33);
	margin-top: 150px;
	z-index: 3;
}
.main .logo.cursive{
	font-family: 'Grand Hotel',cursive;
	font-size: 82px;
	
}
.main .content{
	position: relative;
	z-index: 4;
}
.main .motto{
	min-height: 140px;
}
.main .motto, .main .subscribe .info-text{
	font-size: 28px;
	color: #FFFFFF;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.33);
	text-align: center;
	margin-top: 50px;
	
}
.main .subscribe .info-text{
	font-size: 18px;
	margin-bottom: 30px;
}

.footer{
	position: relative;
	bottom: 20px;
	right: 0;
	width: 100%;
	color: #AAAAAA;
	z-index: 4;
	text-align: right;
	margin-top: 50px;
}
.footer a{
	color: #FFFFFF;
}

@media (min-width:991px){
	.footer{
		position: fixed;
		bottom: 20px;
	}
}

/* 2FA pop-up model */
/* Modal Overlay */
#modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

/* Modal Content */
#2fa-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1100;
}