html,
body {
  height: 100%;
}
body {
	font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
	font-size: 15px;
	display: flex;
	align-items: center;
	padding-top: 40px;
	padding-bottom: 40px;
	background-color: #f5f5f5;
    justify-content: space-evenly;
	flex-direction:column;
	margin:0;
	padding:0;
}



.form-control {
	border-radius: 0px;
}


.form-signin {
  width: 100%;
  max-width: 720px;
  padding: 10px 10px;
  margin: auto;
  background-color:white;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.10);
}

strong {
		font-weight: 600;
}

#logo {
	max-width: 300px;
}

#logospace {

	height: 60px;
}

#sslspace {
	height: 60px;
}

#logospace img{
	height: 60px;
}

#sslspace img{
	height: 60px;
}

.container {
    height: 100vh
}

.container-fluid {
	height:100%;
	background-color: #e1e1e1
}
.board-container{
	padding: 20px;
	box-sizing:border-box;
}
.board {
	background-color: #ffffff;
	height:100%;
	padding: 40px;
	padding-top: 20px;
	border: 1px solid #fff;
	border-radius: 4px;
	overflow: auto;	
}

.form-select,
.input-group-text,
.input-group,
.form-control {
	border-radius: 0px;
}

.btn-primary {
	background-color: #013b81;
	border: 1px solid #013b81;
	border-radius: 0px;
}

/* CSS */
.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.step-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: #cccccc;
}

.step-title {

}

.step-button[aria-expanded="true"] {
  width: 50px;
  height: 50px;
  background-color: #013b81;
  color: #fff;
}

.done {
	background-color: #013b81;
	color: #fff;
}

.step-item {
  z-index: 10;
  text-align: center;
}

#progress {
	-webkit-appearance: none;
	position: absolute;
	width: 100%;
	z-index: 5;
	height: 5px;
	margin-bottom: 5px;
}

/* to customize progress bar */
#progress::-webkit-progress-value {
  background-color: #013b81;
  transition: 0.5s ease;
}

#progress::-webkit-progress-bar {
  background-color: #cccccc;
}