.modal {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999;
}

.modal-content {
    position: relative;
    top: 35%;
    width: 80%;
    text-align: center;
    margin: 30px auto 0;
}

.modal-content p {
    font-size: 40px;
    line-height: 50px;
    color: #fff;
}

.modal .btn-close {
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
    color: #fff;
}

.modal input[type=text] {
    width: 80%;
    float: left;
    border: none;
    padding: 17px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
}

.modal input[type=text]:focus {
    outline: none;
}

.modal button {
    width: 20%;
    float: left;
    border: none;
    padding: 15px;
    cursor: pointer;
    background-color: #007afa;
    color: #fff;
}