/* Start of CMSMS style sheet 'site_en_login_page' */
.login_page_login > a {
  position: relative;
  color: white;
  text-decoration: none;
}

.login_page_login > a:hover {
  color: white;
}
.login_page_login > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: white;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.login_page_login > a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.login_page_login{   
     border-radius:5px;
     padding: 8px 20px;
     margin: 4px 2px;
     border: none;
     background-color: #3b5998;
     color:white;
     font-size:17px;
    }



.login_page_register > a {
  position: relative;
  color: white;
  text-decoration: none;
}

.login_page_register > a:hover {
  color: white;
}
.login_page_register > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: white;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.login_page_register > a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.login_page_register{   
     border-radius:5px;
     padding: 8px 20px;
     margin: 4px 2px;
     border: none;
     background-color: #3b5998;
     color:white;
     font-size:17px;
    }
/* End of 'site_en_login_page' */

