body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    box-sizing: border-box;
    background-image: url('../img/yt-3d.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  
  .container {
    background: rgba(0, 0, 0, 0.58);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(13.7px);
    -webkit-backdrop-filter: blur(13.7px);
    padding: 1.5rem;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
  }
  h1, h2, h3, h4, h5, p{
      margin: 0;
  }
  h5{
      font-weight: 400;
      color: rgb(122, 122, 122);
  }
  form{
      width: 100%;
      display: flex;
      flex-direction: column;
  }
  input {
    padding: 14px;
    border-radius: 50px;
    border: none;
    margin: 20px 0;
    text-align: center;
    background: #222;
    color: #fff;
    outline: none;
  }
  
  button {
    padding: 12px 24px;
    background-color: #ff0000;
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
  }
  
  button:hover {
    background-color: #cc0000;
  }
  
  .avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  .credits{
      padding: 30px 0 0 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }
  .credits img{
    width: 50px;
  }
  .content{
    display: flex;
    flex-direction: column;
  }
