.alert{
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60rem;
    height: 22rem;
    background: #ffffff;
    border-radius: 1rem;
    z-index: 999999;
    border: 0.2rem solid #000000;
    display: none;
}
.alert .content{
    padding: 2rem;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}
.alert .content span{
    font-weight: normal;
    font-size: 2rem;
    text-align: center;
    color: #a5a5a5;
}
.alert .content button{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    font-weight: normal;
    font-size: 1.5rem;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    width: 5rem;
    height: 3rem;
    border-radius: 0.5rem;
    border: 0.1rem solid #000000;
    background-color: #00d8ff;
    cursor: pointer;
}