@charset "utf-8";

main {
    background: rgb(238, 241, 246);
}

.settings-wrap {
    width: 100%;
}

h2 {
    text-align: center;
    margin: 40px auto;
    border: 1px solid black;
    border-radius: 10px;
    width: 90%;
    height: 100px;
    padding: 10px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: 580;
}

.settings-infowrap {
    padding: 20px 10px 0;
    border: 1px solid black;
    border-radius: 8px;
    width: 90%;
    margin: 20px auto 60px;
    background-color: white;
}

.settings-item {
    display: block;
    position: relative;
    width: 100%;
    height: 100px;
    margin-bottom: 15px;
    background-color: white;
    color: black;
    text-decoration: none;
    font-size: 1.3rem;
    border-bottom: 1px solid black;
}

.settings-item::after {
    content: '>';
    position: absolute;
    top: 40%;
    right: 5px;
    transform: translate(-50%, -50%);
}

.settings-description {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

form {
    margin-top: 20px;
    margin-bottom: 20px;
}

.delete-account {
    color: red;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.3rem;
    text-decoration: none;
    border: none;
    background: none;
    height: 50px;
}

.delete-account h3 {
    margin-bottom: 0;
}

@media(min-width: 768px) {
    .settings-wrap {
        width: 60vw;
        margin: 30px auto;
    }
}