.password-form {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(0 0 0 / 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    background-image: url("video-no-signal-background.png");
    background-size: cover;
}

.password-container {
    height: 230px;
    display: flex;
    flex-direction: column;
    width: 384px;
    color: #fff;
    padding: 24px;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.password-container label {
    color: #cecece;
    font-size: 14px;
    text-align: left;
}

.password-container span {
    font-size: 21px;
    font-weight: bold;
    display: flex;
    line-height: 1.45;  
}

.password-container p {
    margin: 8px 0 32px;
    font-size: 14px;
    max-width: 345px;
    line-height: 1.14;
}

.password-container .password-icon-btn {
    position: absolute;
    display: inline;
    margin-top: 18px;
    margin-left: -32px;
    height: 25px;
    width: 25px;
}

.password-container #password-icon {
    height: 25px;
    width: 25px;
}

.password-container .lock-icon {
    position: absolute;
    margin-top: 6px;
    margin-left: 6px;
    height: 25px;
    width: 25px;
}

.password-container .error-message {
    font-size: 12px;
    color: #ff3434f0;
    margin: -28px 0 12px 0;
    opacity: 0.8;
}

.password-container #password {
    height: 36px;
    margin: 12px 0 32px;
    width: 338px;
    border-radius: 4px;
    padding: 0 8px;
    border:none;
}

.password-container #password-confirm{
    width: 149px;
    height: 40px;
    border-radius: 4px;
    background-color: #fff;
    font-size: 15px;
    font-weight: bold;
    border:none;
    padding-left: 22px;
}

.password-container #password-confirm:hover {
    cursor: pointer;
}

@media only screen and (max-width: 287px) {
  .password-container {
    width: calc(100%-48px);
  }
  .password-container span{
    font-size: 16px;
  }
  .password-container #password{
    width: 124px;
  }
}

@media only screen and (min-width: 288px) and (max-width: 406px) {
  .password-container {
    width: calc(100%-48px);
  }	  
  .password-container span{
    font-size: 16px;
  }
  .password-container #password{
    width: 240px;
  }
}
