*,
button {
    font-family: "Open Sans", sans-serif;
}



#btn-container {
	position: absolute;
	height: 350px;
	width: 350px;
	left: 50%;
	top: 50%;
	margin-left: -175px;
	margin-top: -90px;



}
#btn-container::before {
	content: "";
	position: absolute;
	height: 100px;
	width: inherit;
	margin-top: -165px;
	background-repeat: no-repeat;
	background-size: 150px auto;
	background-position: center center;
	background-image: url("../img/LionBlue.png");
}

#signIn-form {
    height: auto;
    width: auto;
    width: 350px;

    position: absolute;
    z-index: 9999;
    left: 50%;
    margin-left: -175px;
    margin-top: 150px;

}



#signIn-form.hidden {
    opacity: 0;
    z-index: 1;
    max-height: 0;
}

#signIn-form.active {
    z-index: 9999;
    opacity: 1;
    max-height: 1000px;
}

#signIn-form {

    width: 350px;
    height: 350px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -175px;
    background-color: #fff;
    
    transition-property: opacity;
    transition-duration: .3s;
    overflow: hidden;

}

#signIn-form input,
#signIn-form label {
    height: 40px;
    float: none;
    display: block;
    line-height: 40px;
    text-align: left;
    padding: 15px;
    width: 100%;
    max-height: 70px;
    border-radius: 4px;
    appearance: none;
    font-size:16px;
    color: #42587E;
}
#close-signIn-form{
    
        height: 50px;
        width: 50px;
        position: absolute;
        top: 0;
        right: 0;
        text-align: center;
        line-height: 50px;
        font-size: 16px;
        cursor: pointer;
        color: #ff0000;
    
}
#forward-signIn-form {
	float: right;
	margin: 15px;
	padding: 5px 25px;
	background: #42587E;
	height: 40px;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	line-height: 40px;
}
#signIn-form input {
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #42587E;
    color:black;
}

#signIn-form input:focus,
#signIn-form input:active,
#signIn-form input:hover,
#signIn-form input:focus-visible
{
    appearance: none;
    color:black;
    border:none;
    border-bottom: 1px solid #42587E;
    outline:none;
    
}

#for-cr a {
	padding: 15px;
	margin-top: 15px;
	display: block;
	color: #42587E;
	text-decoration: none;
}




#signIn-form input.error {
    border-color:red;
    color:red;
}

#btn-container button {
    padding: 15px;
    line-height: 50px;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    appearance: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    min-width: 300px;
    margin-top: 80px;
    margin: auto;
    display: block;
    margin-top: 15px;
    font-size: 16px;
}

#btn-container button:hover {
    filter: saturate(1.5);
    font-weight: bold;
}

#btn-container button#signIn {
    background-color: #42587E;
    color: #fff;
}

#btn-container button#register {
    color: #42587E;
    background-color: #fff;
}

#footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    height: 50px;
    font-size: 12px;
}
#footer #copyright{
    margin-left:15px;
}
#footer a {
    text-decoration: none;
    color: #42587E;
    padding: 15px;
}
div#close-iframe{
    position:fixed;
    top:15px;
    right: 15px;
    z-index: 9999999;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    width: 70px;
    cursor:pointer;
}
#login-error {
	color: red;
	z-index: 99999;
	opacity:1;
    position: fixed;
	margin-top: 25px;
	width: 350px;
	white-space: normal;
	left: 50%;
	margin-left: -175px;
    transition-property: all;
    transition-duration: 1s;

}
#login-error.hidden{
    opacity:0;
}