@charset "utf-8";

.delete-form-wrap {
    width: 90vw;
    margin: 30px auto 60px;
    border: 1px solid black;
    border-radius: 10px;
    padding: 20px;
    background-color: #f8f9fa;
    margin: 50px auto 80px;
}

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

label {
    font-weight: 600;
    margin-bottom: 5px;
}

.message-text {
    margin-bottom: 0;
}

.form-field-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
}

.form-field-wrap input {
    width: 100%;
    height: 50px;
    padding: 3px;
}

.email-wrap input {
    width: 100%;
    height: 40px;
}

.delete-btn-wrap {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.back-link {
    width: 45%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: rgb(236, 231, 231);
    color: black;
    border: none;
    border-radius: 10px;
}

.account-suspended-delete-btn {
    width: 45%;
    height: 60px;
    border-radius: 10px;
    background-color: #cc0000;
    color: white;
    border: none;
}

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

.suspended-modal {
    display: none;
    width: 80vw;
    position: absolute;
    top: 45%;
    right: 50%;
    transform: translate(50%, -50%);
    padding: 40px;
    border: 1px solid black;
    border-radius: 10px;
    background-color: white;
    z-index: 1000;
}

.suspended-modal>p {
    text-align: center;
}

.suspended-btn-wrap {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 40px;
}

.suspended-delete-btn {
    height: 60px;
    width: 45%;
    background-color: #cc0000;
    color: white;
    border: none;
    border-radius: 10px;
}

.suspended-cancel-btn {
    width: 45%;
    height: 60px;
    background-color: rgb(236, 231, 231);
    color: black;
    border: none;
    border-radius: 10px;
}

@media(min-width:768px) {
    .delete-form-wrap {
        width: 55vw;
        padding: 40px;
    }

    .suspended-modal {
        width: 50vw;
    }
}