body{
	
}*, *:before, *:after {
  box-sizing: border-box;
}
:root {
  --sky: #0175fc;
  --white: #fff;
  --black: #363636;
}

body{ 
  margin: 0; 
  padding: 0; 
  font-family: 'Montserrat', sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
a:hover{text-decoration: none;}
a{text-decoration: none;}
.login-title{
	font-family: "Arial", Sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 55px;
    color:#1F7BC4;
    margin: 40px auto;
    text-align:center;
}
.error-message p{
    color:red !important;
}
.form-wapper {
  padding: 40px;
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 14px 28px rgb(0 0 0 / 25%), 0 10px 10px rgb(0 0 0 / 22%);
  width: 100%;
}
.login-tab-group { list-style: none; padding: 0; margin: 0 0 40px 0; display: flex; align-items: center; }
.login-tab-group li { display:block; width:100%; }
.login-tab-group li a {
  display: block;
  text-decoration: none;
  padding: 15px;
  background: #f5f5f5;
  color:var(--black);
  font-size: 20px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  cursor: pointer;
  transition: .5s ease;
}
.login-tab-group .active a { background: #1F7BC4; color:var(--white); }
.login-card-content { display: none; }
.login-card-content.login-tab-active{ display:block; }

.login-card-content h2{
  font-size: 30px;
  font-weight:700;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
}
.button-input-group { width: 100%; display: grid; place-items: center; margin-top: 0.5rem; }


.group { width: 100%;  margin-bottom: 1.3rem; }
.group input, .group button.signin-btn {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  /*border-radius: 0.4rem;*/
}
.login-card-content  input {
    background-color: #eee !important;
    max-width: 100% !important;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #999 !important;
    font-size: 14px !important;
    padding: 16px !important;
    line-height: 1.7em !important;
    /*border-style: solid !important;*/

}
.login-card-content label{
    font-size: 12px;
    font-family: inherit;
    font-weight: 700;
    padding: 7px 0px;
}
.login-card-content  label span{
  color:red;
}
.password-group {
    position: relative;
    display:inline-block !important;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.password-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}

.password-wrapper input {
    flex: 1;
    border: none;
    padding: 10px;
    outline: none;
}

.password-wrapper button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.password-wrapper button i {
    font-size: 18px;
}
.signin-btn{
 	border-radius: 50px !important;
    padding: 10px 40px !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    background-color: #a4cd3a !important;
    border: 2px solid #a4cd3a !important;
    color: #FFF !important;
    cursor:pointer;
    width:auto !important;
}
.signin-btn:hover{
	 background-color: #ffffff !important;
    color: #a4cd3a !important;
}
   
.home-link a{
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: #1F7BC4;
}
.home-link a i{ padding-right:7px }
.form-link.forgot a{
	font-size: 16px;
	font-weight:600;
	cursor:pointer;
	color:  #1F7BC4; 
}
.form-link.forgot a:hover{
	  color: #a4cd3a;
}
.error-message{
   font-size: 14px;
  font-weight: 600;
  color:red;
  padding:5px;
}
#reg_message,#registration_message,#login_message{
   font-size: 16px;
  font-weight: 600;

}
@media(max-width:767px){
    .form-wapper {
        padding: 20px;
        margin: 40px 0;
    }
    .login-title{
 
    font-size: 30px;
    font-weight: 800;
    line-height: 45px;
    pading:10px;
  }
}