@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  body{
    min-height: 100vh;
    width: 100%;
    background: #009579;
  }
  .container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 430px;
    width: 100%;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  }
  .container .registration{
    display: none;
  }
  #check:checked ~ .registration{
    display: block;
  }
  #check:checked ~ .login{
    display: none;
  }
  #check{
    display: none;
  }
  .container .form{
    padding: 2rem;
  }
  .form header{
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }

  .img{
    margin-bottom: 100px;
  }
  .form input {
    height: 40px;
    width: 100%;
    padding: 0 12px;
    font-size: 15px;
    margin-bottom: 0rem;
    margin-top: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
}
   .form input:focus{
     box-shadow: 0 1px 0 rgba(0,0,0,0.2);
   }
  .form a{
    font-size: 14px;
    color: #009579;
    text-decoration: none;
    margin-left: 13px;
  }
  .form a:hover{
    text-decoration: underline;
  }
  .form input.button {
    color: #fff;
    background: #009579;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 1.1rem;
    cursor: pointer;
    transition: 0.4s;
}
  .form input.button:hover{
    background: #006653;
  }
  .signup{
    font-size: 17px;
    text-align: center;
  }
  .signup label{
    color: #009579;
    cursor: pointer;
  }
  .signup label:hover{
    text-decoration: underline;
  }