/*Login Page CSS*/
.my-btn {
  color: #fff;
  background-color: #242c33;
  border-color: #242c33; 
}
 
 .my-btn:hover {
    color: #fff;
    background-color: #9fbf2e;
    border-color: #9fbf2e;
}

.bg-login{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.social-links{
	list-style: none;
	color: white;
	display: flex;
	justify-content: space-evenly;
}
.social-links a{
	color: white;
	padding: 5px;
}
.social-links a:hover{
	color: #a6c438;
}
/*Forms CSS*/
label{
	margin-bottom: 3px;
	font-weight: bold;
}
/*Link CSS*/
.myLink{
	color: #495057;
}
.myLink:hover{
	color: #BFD88F;
}