.btn-login-1 {
    padding: 10px 15px;
    background-color: black;
    color: white;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
}


.loginform {
    width: 350px;
    background-color: white;
    padding: 30px 20px;
    box-shadow: 0px 0px 10px 3px #ccc;
    position: absolute;
    left: 50%;
    /* top: 50%; */
    top: -50%;
    z-index: 99;
    transform:translate(-50%, -50%);
    transition: 2s;



}

.showloginform {
   top: 50%;
 
 }


.loginform input {
    width: 100%;
    height: 35px;
    margin-bottom: 15px;
    border-radius: 16px;
    text-align: center;

}

.loginform span {

    position: absolute;
    right: 0px;
    top: 0px;
    width: 30px;
    height: 30px;
    background-color: green;
    line-height: 30px;
    text-align: center;
    color: white;
    cursor: pointer;

}

.modal-open{
    /* overflow: hidden; */
    background: rgba(0, 0 ,  0, 0.5);
    transition: 1s;
  }

  .loginform .title{
    display: block;
    background:black;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    margin: 10px 0px;
  }