@charset "utf-8";

.suspended-wrap {
    width: 90vw;
    margin: 30px auto 60px;
}

h2 {
    text-align: center;
    color: red;
    margin-bottom: 30px;
}

h3 {
    text-align: center;
    margin: 20px auto;
    font-weight: 600;
    border: 1px solid black;
    border-radius: 10px;
    padding: 20px;
    background-color: white;
}

.do-list-wrap>p {
    margin-top: 30px;
}

.do-list li {
    margin-top: 20px;
    font-weight: 600;
}

.suspended-account-appeal {
    width: 95%;
    height: 100px;
    border: 1px solid black;
    border-radius: 999px;
    padding: 10px 20px;
    margin: 50px auto;
    background-color: rgb(236, 231, 231);
}

.suspended-account-appeal>a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: black;
}

.suspended-account-delete {
    width: 95%;
    height: 100px;
    border: 1px solid black;
    border-radius: 999px;
    padding: 10px 20px;
    margin: 50px auto;
    background-color: #cc0000;
}

.suspended-account-delete>a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

@media(min-width:768px) {
    .suspended-wrap {
        width: 50vw;
    }

    .suspended-guidance-wrap {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .do-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}