*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h2 {
    font-family: "Cinzel", serif;
    font-weight: bolder;
    font-size: 35px;
    margin-bottom: 50px;
    padding: 20px;
    color: wheat;
    text-decoration: underline;
}

.main-container {
    height: 100vh;
    width: 100vw;
    background: linear-gradient(
        135deg, #61d954, #116e62        
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wrapper {
    background-color: #ffffff;
    width: 450px;
    border-radius: 8px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    margin-bottom: 70px;
}

.container {
    width: 300px;
    position: relative;
}
input, p {
    font-family: "Caveat", cursive;
    font-weight: bolder;
    letter-spacing: 4px;
}

input {
    width: 100%;
    height: 50px;
    padding: 0 40px 0 20px;
    position: relative;
    background-color: #f5f5f5;
    border: none;
    outline: none;
    border-radius: 5px 5px 0 0;
}

.strength {
    width: 25%;
    display: inline-block;
    position: relative;
    height: 100%;
    bottom: 5px;
}

#toggle {
    position: absolute;
    top: 17px;
    right: 15px;
    color: #808080;
    cursor: pointer;
}

#strength-bar {
    background-color:  #dcdcdc;
    height: 10px;
    position: relative;
    border-radius: 0 0 5px 5px;
}

p {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 700px){
    h2 {
        font-size: 20px;
    }
}
 
@media (max-width: 500px){
  .wrapper   {
    width: 300px;
    padding: 40px 0 30px 0;
  }

  .container {
    width: 250px;
  }

  input {
    height: 40px;
  }

  h2 {
    font-size: 15px;
  }
}
 
@media (max-width: 315px){
  .wrapper   {
    width: 250px;
    padding: 30px 0 20px 0;
  }

  .container {
    width: 180px;
  }  

  h2 {
    font-size: 13px;
  }
}