

html {
    height: 100%;
}
body {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 100%;
    padding: 10px;
    margin: 0;
    background: rgb(222,244,255);
    background: radial-gradient(circle, rgba(251,251,255,1) 0%, rgba(222,244,255,1) 100%);
    position: relative;
    min-height: 100%;
    box-sizing: border-box;
}  

main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    min-height: 300px;
    max-width: 320px;
    width: calc(100% - 20px);
    border-radius: 7px;
    box-shadow: 12px 12px 16px 1px #777;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
}

img.logo {
    max-width: 32%;
}

.item {
    display: inline-block;
    margin-top: 10px;
    width: 90%;
}

.item.large {
    margin-top: 20px;
}

.small {
    font-size: 10px;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
    color: #999;
}

input[type=text], input[type=password], input[type=email]  {
    padding: 8px 10px;
    font-size: 110%;
    outline: none;
    border: 1px solid #efefef;
    box-shadow: 0 0 8px 0px #efefef;
    box-sizing: border-box;
    width: 100%;
}

h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 95%;
    margin: 0;
    text-transform: uppercase;
    padding-bottom: 2px;
    color: #0088AA;
} 

.hidden {
    display: none;
}

.link {
    display: inline-block;
    position: relative;
    text-decoration: none;
    padding: 3px 0;
    color: #0088AA;
}
.link-wrapper {
    position: relative;
    display: block;
    font-size: 13px;
    margin: 10px auto 0!important;
}


.hover-2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    background-color: #0088AA;
    transition: transform 0.3s;
}
    .hover-2:hover:after {
        transform: scaleX(1);
    }


.hoverbtn {
	padding: 10px 13px 8px;
    border: none;
    background-color: #D4002C;
    color: #fff;
    text-transform: uppercase;
    border-radius: 3px;
    font-weight: bold;
    transition: all 0.4s ease;
    cursor: pointer;
    text-shadow: 0 0 1px #204e38;
    text-decoration: none;
}
	.hoverbtn:hover {
		background-color: #8a001d;
	}

.msgboard {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	transition: all 0.4s ease;
	transform-origin: center; 
	transform: scale(1);
}

.msgboard.close {
	transform: scale(0);
}