body {
    height: 100dvh;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.account-view {
    z-index: 0;
    box-shadow: 0px 0px 5px 2px #0000001d;
    width: 300px;
    height: calc(100% - 10px);
    max-height: 430px;
    border-radius: 20px;
    background-color: #ffffff;
    font-size: larger;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: column;

    .container {
        z-index: 1;
        width: 300px;
        height: 200px;
        border-radius: 0px 0px 20px 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: auto;

        .header {
            width: 300px;
            height: 150px;
            border-radius: 20px 20px 0px 0px;
            background-color: white;
            font-size: medium;
            margin: 0 0 20px 0;
            flex-shrink: 0;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;

            .color-header {
                width: 300px;
                height: 50px;
                position: absolute;
                bottom: 0;
                border-radius: 20px 20px 0 0;
                background-color: white;
            }

            .account-view-icon img {
                cursor: pointer;
                border-radius: 50%;
                width: 85px;
                height: 85px;
                box-shadow: 0 0 0 4px white;
                background-color: white;
                position: absolute;
                bottom: 0;
                left: 107.5px;
            }

            .account-view-icon img::after {
                content: '<span class="material-symbols-outlined"></span>';
            }
        }

        .options {
            flex-grow: 1;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 30px;

            .outline-btn {
                margin: 0;
            }
        }



        .account-view-name {
            width: 80%;

            p {
                font-size: x-large;
                font-weight: 600;
                width: 100%;
                text-align: center;
                margin: 0px;
                color: #3b3b3b;
                margin-bottom: 8px;
                text-overflow: ellipsis;
                overflow: hidden;
                white-space: nowrap;
                font-family: 'Inter', 'Noto Sans JP';
            }
        }

        .account-view-email {
            width: 80%;

            p {
                font-size: smaller;
                width: 100%;
                text-align: center;
                margin: 0px;
                color: #646464;
                text-overflow: ellipsis;
                overflow: hidden;
                white-space: nowrap;
                font-family: 'Inter', 'Noto Sans JP';
            }
        }
    }
}

.legal-info {
    font-size: small;

    p {
        margin: 5px 0px;
        color: #7a7a7a !important;
    }
}