

.input {
    width: 100%;
    padding: 12px 12px;
    box-sizing: border-box;
  /*   background-color: #eee; */
    background-color: #eff3f4;
    border: 1.5px solid transparent;
    font-size: 16px;
    border-radius: 3px;
    transition: 0.2s ease-in;
  }
  
  .input:focus {
    outline: none;
    border-color: #4eb8dd;
  }
  
  .login-btn {
    width: 100%;
    color: #fff;
    text-align: center;
    background-color: #005EE6;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px;
  }
  .login-btn:hover {
    background-color: #3c99b9;
  }
  
  .reg-btn {
    width: 100%;
    color: #fff;
    text-align: center;
    background-color: #01B516;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px;
  }
  .reg-btn:hover {
    background-color: #3c99b9;
  }
  
  .facebook {
    background-color: #607cb7;
  }
  
  .facebook:hover {
    background-color: #506ba5;
  }
  
  .google {
    background-color: #dd4b39;
  }
  
  .google:hover {
    background-color: #c54333;
  }
  
  .p {
    font-size: 12px;
    text-align: center;
    color: #bbb;
    margin: 25px 0 0 0;
  }
  /*rating css start */
  /* component */
  
  .star-rating {
    /* border:solid 1px #ccc; */
    display:flex;
    flex-direction: row-reverse;
    font-size:1.5em;
    justify-content:space-around;
    padding:0 .2em;
    text-align:center;
    width:5em;
  }
  
  .star-rating input {
    display:none;
  }
  
  .star-rating label {
    color:#015DE6;
    cursor:pointer;
  }
  
  .star-rating :checked ~ label {
    color:#f90;
  }
  
  .star-rating label:hover,
  .star-rating label:hover ~ label {
    color:#fc0;
  }