.fis-login-container {
	max-width: 320px;
	margin: 0 auto;
	padding: 20px;
	border: 1px solid #ccc;
	background: #fff;
}

.tabs {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.tab {
	flex: 1;
	text-align: center;
	padding: 10px;
	cursor: pointer;
	background: #f3f3f3;
	border: 1px solid #ccc;
	border-bottom: none;
	font-weight: normal;
}

.tab.active {
	background: #fff;
	font-weight: bold;
	border-bottom: 2px solid white;
}

.tab:hover {
    background: #fff;
    font-weight: bold;
    border-bottom: 2px solid white;
}

.tab-content {
  	display: none;
}

.tab-content.active {
  	display: block;
}

input[type="text"],
input[type="submit"] {
	width: 100%;
	padding: 10px;
	margin: 8px 0;
	box-sizing: border-box;
	border: 1px solid #8cc63f;
	border-radius: 4px;
}

input[type="submit"] {
	background-color: #35577d;
	color: white;
	font-weight: bold;
	border: none;
	cursor: pointer;
}

input[type="submit"]:hover {
  	background-color: #2c4667;
}

.tab-content p {
	margin-top: 10px;
	font-size: 14px;
}

.tab-content a {
	color: #003366;
	text-decoration: underline;
}

.tab-divider {
	background-color: #94c83D;
	width: 2px;
	margin: 10px;
}