.form-container {
    display: grid;
    width: 100%;
    height: calc(100vh - 350px);
    justify-content: center;
    vertical-align: middle;
    justify-items: center;
    justify-self: center;
    margin: auto;
}

form {
    width: 300px;
    height: 280px;
    display: grid;
    grid-template-rows: 22% 22% 28% 28%;
    justify-content: center;
    justify-items: center;
    vertical-align: middle;
    justify-self: center;
    margin: auto;

    -webkit-user-select: none;  
    -moz-user-select: none;    
    -ms-user-select: none;      
    user-select: none;
}

.guest-area {
    font: normal normal bold 50px/1.4em worksans-semibold,'work sans',sans-serif;
    font-size: 48px;
    line-height: .8em;
    margin-bottom: 23px;
    margin-top: 10px;
    padding-top: 0;
    padding-bottom: 0;
    color: #393E44;
    text-align: center;
}

.enter-password {
    padding-top: 10px;
    font-family: Helvetica;
    font-size: 16px;
    line-height: 16px;
    font-weight: 300;
    color: #393E44;
    text-align: center;
}

.password {
    border: none;
    outline: none;
    border-bottom: 1px solid;
    border-color: rgba(150, 158, 167, 1);
    width: 300px;
    height: 26px;
    /* padding: 2px; */
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    vertical-align: middle;
    justify-self: center;
    justify-content: center;
    justify-items: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #393E44;
    /* margin: auto; */
    margin-top: 5px;
    -webkit-transition: border-color .2s ease-in-out;
}

.password:focus {
    border-color: rgba(51, 171, 142, 1);
}

.password::placeholder {
    opacity: 0.8;
    font-size: 1em;
    color: #393E44;
}

.incorrect-password {
    font-size: 13px;
    line-height: 26px;
    font-weight: bold;
    color: #ff3d3d;
    text-align: left;
    padding-top: 0;
}

.button {
    width: 300px;
    text-decoration: none !important;
    font-size: 16px !important;
    background-color: rgba(51, 171, 142, 1);
    color: #ffffff;
    height: 48px;
    border-radius: 0;
    font-weight: normal;
    opacity: 1;
    transition: opacity .2s ease-in-out;
    border-radius: 1px;
    border: 0;
    outline: none;
    margin: auto;
}

.button:hover {
    background-color: rgba(51, 171, 142, 1);
    color: #ffffff;
    opacity: 0.85;
}

.button:focus {
    outline: none;
    border: none;
}