#authModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.authModal-inner {
    padding: 40px 50px 60px;
    color: #333333;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 10px 10px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

@media screen and (max-width: 820px) {
    .authModal-inner {
        width: 90%;
        padding: 20px 40px 20px;
    }
}

.authModal-ttl {
    color: #1d98c9;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.4;
    margin-top: 20px;
}

.auth-btn-wrap {
    display: flex;
    margin: 0 auto;
    width: 70%;
    justify-content: center;
    gap: 10%;
}

.auth-btn {
    width: 45%;
    padding: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    background: #20AEE5;
    border: 1px solid #20AEE5;
    color: #fff;
    transition: .3s;
}

.auth-btn:hover {
    opacity: 0.8;
}

#yesButton {}

#noButton {
    background: #fff;
    border: 1px solid #20AEE5;
    color: #20AEE5;
}