body {
    font-family: Poppins;
    min-height: 100vh;
    background: #80CAF3;
}

.trigger_popup {
    cursor: pointer;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    padding: 20px;
}

#success_trigger {
    background: #32ba7c;
    position: fixed;
    top: 20%;
    left: 20%;
}

#error_trigger {
    background: #ff3636;
    position: fixed;
    top: 20%;
    left: 60%;
}

#loading {
    display: none;
    position: fixed;
    top: 40%;
    left: 40%
}

#success {
    display: none;
    position: fixed;
    top: 20%;
    left: 40%
}

#error {
    display: none;
    position: fixed;
    top: 20%;
    left: 40%;
}

.popup-content {
    /* display: block; */
    width: 326px;
    height: 408px;
    background: white;
    box-shadow: 4px 4px 70px 10px rgb(0 0 0/11%);
    border-radius: 25px;
}

.imgbox {
    text-align: center;
}

.img {
    width: 112px;
    margin-top: 40px;
}

.title {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0.05em;
    text-align: center;
    margin: auto;
}

#success .title {
    color: #32ba7c;
}

#error .title {
    color: #ff3636;
}

.para {
    font-weight: 500;
    width: 80%;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: center;
    margin: auto;


}

.button {
    width: 50%;
    display: block;
    margin: 20px auto;
    border-radius: 25px;
    padding: 10px;
    text-decoration: none;
    color: white;
    text-align: center;
    letter-spacing: 0.05em;
}

#s_button {
    background: #32ba7c;
}

#e_button {
    background: #ff3636;
}

.error {
    color: #ff3636;
}

@media (max-width: 1199px) {
    #success {
        display: none;
        position: fixed;
        top: 20%;
        left: 5%;
    }

    #loading {
        display: none;
        position: fixed;
        top: 40%;
        left: 5%;
    }

    #error {
        display: none;
        position: fixed;
        top: 20%;
        left: 5%;
    }
}