/* ----------- Global Settings ----------- */
html {
    height: 100%
}
body {
    background-position: left top;
    background-size: cover;
    background-repeat: no-repeat;
}
input {
    outline: none;
    margin: 0;
    padding: 0;
    border: none;
}
.divLogo {
    width: 256px;
    margin: 0 auto;
}
#wrapper {
    bottom: 50%;
    right: 50%;
    position: absolute;
}
#container {
    left: 50%;
    position: relative;
    top: 50%;
    text-align: center;
}
.logintxt {
    text-transform: uppercase;
    text-align: center;
}
#Fullver_div {
    font-size: 16.105px;
    text-align: center;
}
#Fullver_div a {
    border-bottom: 1px dotted #ccc;
}
.error {
    margin: 20px 0 0 0;
}
.errspan {
    background: red
}
/* ----------- MEDIA QUERIES ----------- */
body {
    font-family: 'Montserrat';
    background:#0d0e1b;
}
.btn01 {
text-transform: uppercase;
	width: 77%;
	color: #000;
	background: rgba(145,0,0,1);
	background: -moz-linear-gradient(top, rgba(145,0,0,1) 0%, rgba(255,0,0,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(145,0,0,1)), color-stop(100%, rgba(255,0,0,1)));
	background: -webkit-linear-gradient(top, rgba(145,0,0,1) 0%, rgba(255,0,0,1) 100%);
	background: -o-linear-gradient(top, rgba(145,0,0,1) 0%, rgba(255,0,0,1) 100%);
	background: -ms-linear-gradient(top, rgba(145,0,0,1) 0%, rgba(255,0,0,1) 100%);
	background: linear-gradient(to bottom, rgba(145,0,0,1) 0%, rgba(255,0,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#910000', endColorstr='#ff0000', GradientType=0 );
	-webkit-border-radius: 50;
	-moz-border-radius: 50;
	border-radius: 50px;
	text-shadow: 2px 1px 1px #700101;
	color: #fff;
	font-size: 18px;
	border: solid #ff0000 2px;
		border-top: 2px solid #bf5f5f;

	text-decoration: none;
	font-weight: bold;
	margin-top: 15px;
}
.logintxt {
	color: #fff;
	background:#16172c;
	border:2px solid #0d0e1b;
	border-right:2px solid #373b56;
	border-bottom:2px solid #373b56;
	-webkit-box-shadow: inset 15px 15px 15px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: inset 15px 15px 15px 0px rgba(0,0,0,0.75);
	box-shadow: inset 15px 15px 15px 0px rgba(0,0,0,0.75);
	border-radius:50px;
	text-align: center;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
	padding: 1em;
	width: 70%;
	margin: 10px 0;
}
/* Mobile Portrait */
@media only screen and (min-width: 320px) and (max-width: 479px) {
    #wrapper {
        height: 320px;
        width: 300px;
    }
    .logintxt {
        margin: 15px 0 0 0;
        padding: 10px 0;
        width: 70%
    }
    #Fullver_div {
        font-size: 12px;
    }
    .error {
        font-size: 12px;
    }
}
/* Mobile Landscape */
@media only screen and (min-width: 480px) and (max-width: 767px) {
    #wrapper {
        height: 290px;
        width: 320px;
    }
    .logintxt {
        font-size: 12px;
        margin: 15px 0 0 0;
        padding: 7px 0;
        width: 70%
    }
    #Fullver_div {
        font-size: 11px;
    }
    .error {
        font-size: 11px;
    }
}
/* TABLETS PORTRAIT */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    #wrapper {
        height: 380px;
        width: 512px;
    }
    .logintxt {
        font-size: 22px;
        margin: 18px 0 0 0;
        padding: 12px 0;
        width: 70%
    }
    #Fullver_div {
        font-size: 14px;
    }
    .error {
        font-size: 14px;
    }
}
/* TABLET LANDSCAPE / DESKTOP */
@media only screen and (min-width: 992px) and (max-width: 3440px) {
    #wrapper {
        height: 512px;
        width: 380px;
    }
    .logintxt {
        color: #fff;
        		background:#16172c;
		border:2px solid #0d0e1b;
		border-right:2px solid #373b56;
		border-bottom:2px solid #373b56;
		-webkit-box-shadow: inset 15px 15px 15px 0px rgba(0,0,0,0.75);
		-moz-box-shadow: inset 15px 15px 15px 0px rgba(0,0,0,0.75);
		box-shadow: inset 15px 15px 15px 0px rgba(0,0,0,0.75);
		border-radius:50px;
        text-align: center;
        font-size: 16px;
        text-transform: uppercase;
        font-weight: bold;
        padding: 1em;
        width: 70%;
        margin: 10px 0;
    }
    #Fullver_div {
        font-size: 18px;
    }
    .error {
        font-size: 18px;
    }
}
#Fullver_div,
.error {
    text-transform: uppercase;
    color: white;
    font-weight: bold;
}
input::-webkit-input-placeholder {
    -webkit-transition: opacity 0.3s linear;
    color: #363a55;
}
input:focus::-webkit-input-placeholder {
    opacity: 0.35;
}
/* Firefox < 19 */
input:-moz-placeholder {
    -webkit-transition: opacity 0.3s linear;
    color: #363a55;
}
input:focus:-moz-placeholder {
    opacity: 0.35;
}
/* Firefox > 19 */
input::-moz-placeholder {
    -webkit-transition: opacity 0.3s linear;
    color: #363a55;
}
input:focus::-moz-placeholder {
    opacity: 0.35;
}
/* Internet Explorer 10 */
input:-ms-input-placeholder {
    -webkit-transition: opacity 0.3s linear;
    color: #363a55;
}
input:focus:-ms-input-placeholder {
    opacity: 0.35;
}