body {
    background-image: url("../img/back.webp");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 97vh;
}

#loginfrm {
    width: 400px;
    height: 300px;
    position: relative;
    background: #c7a6b0;
    border-radius: 11px;
    opacity: 75%;
    box-shadow: rgb(100 100 111 / 50%) 0px 7px 29px 0px;
}

#passinput {
    height: 34px;
    width: 260px;
    border-radius: 8px;
    border: none;
    padding-left: 8px;
    padding-right: 8px;
}

#passinput:focus {
    outline: none;
}

#wrapper {
    position: absolute;
    top: 45%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -45%);
}

#loginbtn {
    background: white;
    border: none;
    padding: 10px;
    margin-left: 3px;
    border-radius: 8px;
    cursor: pointer;
}