body {
    background-color: #f7f7f8;
}
#sign-up {
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0;
}
#sign-up .row {
	padding-left: 0;
	padding-right: 0;
}
.card-container {
	margin-bottom: 16px;
}
.card {
	height: 121px;
	width: 239px;
	max-width: 239px;
	border-radius: 4px;
	background-color: #FFFFFF;
	box-shadow: 0 0 2px 0 rgba(0,0,0,0.06), 0 1px 3px 0 rgba(0,0,0,0.1);
	text-align: center;
}
.card:hover {
	box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.06);
	cursor: pointer;
}
.card img {
	height: 40px;
}
.card-text {
	margin-top: 10px;
}
.left-card-margin {
	margin-left: 13px;
}
.right-card-margin {
	margin-right: 13px;
}
.fa-user-o {
	font-size: 34px;
}
.center {
	text-align: center;
}
.notification-close {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    z-index: 1;
}

/** VERTICAL & HORIZONTAL Centering of Form Panel 600px and up for tablet and desktop **/
@media only screen and (min-width: 601px) {
    #sign-up {
        display: flex; /* switches from block to flex for vertical centering */
        align-items: center;
        height: 100vh; /* 100vh references the browser window to vertically center */
    }
}

@media only screen and (max-width: 600px) {
	.card{
		width: 100%;
		max-width: 100%;
	}
}