.wp11za-input{
    margin-bottom:10px;
    width: 350px;
}
.overlay {
    display: none;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 1000000;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    overflow: hidden;
    transition: 0.5s;
}
.overlay-content {
    position: relative;
    top: 40%;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}
.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}