/* =========== 비밀번호 찾기 ========== */
.time-group {
    position: absolute;
    top: 29%;
    right: 4%;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.time-group svg {
    display: none;
}

.time-explan-group {
    margin-top: 6px;
}

.time-over {
    color: var(--Error-500, #F04438);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.auth-number-wrapper {
    display: none;
    margin-top: 1.25rem;
}

/* ========== 회원 정보 확인 ========== */
.user-info-section {
    width: 100%;
}

.user-info-container {
    margin: 6rem auto 3rem auto;
    transition: all ease 2s 0s;
}

.user-info-header {
    max-width: 100%;
    text-align: center;
}

.icon-key {
    max-width: 3.5rem;
    max-height: 3.5rem;
    margin: 0 auto;
}

.icon-key img {
    width: 100%;
}

.title {
    align-self: stretch;
    margin: 1.5rem 0 0.75rem 0;
    color: var(--Gray-900, #101828);
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2.375rem;
    transition: all ease 1s 0s;
}

.explan {
    align-self: stretch;
    color: var(--Gray-600, #475467);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
}

.user-info-body {
    margin: 2rem auto 1.5rem auto;
    max-width: 22.5rem;
}

.user-info-body .email {
    color: var(--Gray-400, #98A2B3);
}

.user-info-body .email:read-only {
    background: var(--Gray-100, #F2F4F7);
}


.user-info-footer {
    margin: 0 auto;
    max-width: 22.5rem;
    width: 100%;
}

.user-info-footer button {
    width: 100%;
    height: 3rem;
}

.find-id-password-button {
    width: 100%;
    padding: 0.75rem 1.125rem;
    margin-top: 1.5rem;
}

.flex-container .phone-number-input {
    flex: 1;
    margin-right: 0.5rem;
}

.btn-send {
    padding: 0.62rem 0.88rem;
}

.go-to-login-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0.75rem;
    padding: 0.625rem 0 0;
}

.go-to-login-btn .to-right-underline {
    display: flex;
    padding: 0.625rem 0 0 0;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin-top: -0.75rem;
    color: var(--Gray-700, #344054);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.25rem;
    background: none;
}

.find-id-password-result-explan,
.find-password-success-msg {
    color: var(--Gray-600, #475467);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.75rem;
    margin-bottom: 1.5rem;
}

.find-password-success-msg:nth-child(1) {
    padding: 0;
    margin: 0;
}

.find-password-success-msg:nth-child(2) {
    padding: 0;
    margin: 1.5rem 0;
}

/* ========== 회원 정보 수정 ========== */
/* 회원 프로필 이미지 */
.user-profile-image-wrapper {
    width: 100%;
    max-width: 6rem;
    margin: 2rem auto 2.5rem auto;
}

.user-profile-image {
    position: relative;
    display: flex;
    width: 6rem;
    height: 6rem;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 18.75rem;
}

.user-profile-image-wrapper img {
    width: 100%;
    z-index: -3;
}

.profile-image-change-btn-background {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2rem;
    width: 100%;
    z-index: -2;
}

.profile-image-change-btn-background svg mask rect {
    transition: opacity 0.3s ease;
    z-index: -1;
}

.profile-image-change-btn:hover .profile-image-change-btn-background svg mask rect {
    opacity: 0.6;
}

.profile-image-change-btn-text {
    position: absolute;
    bottom: 0.3rem;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--Base-White, #FFF);
    text-align: center;
    font-size: 1.05rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5rem;
    ;
}

/* 회원 프로필 정보 */
.information-container .responsive-display {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.information-container label {
    display: flex;
    flex: 1;
    max-width: 11.5rem;
    min-height: 2.75rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.25rem;
    color: var(--Gray-700, #344054);
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex: 1;
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.information-container p {
    max-width: 32rem;
}

.font-default {
    padding: 0.625rem 0rem;
    gap: 1rem;
    color: var(--Gray-900, #101828);
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
}

.flex button {
    padding: 0.625rem 1rem;
}

.underline-box {
    border-bottom: 0.0625rem solid var(--Gray-200, #EAECF0);
    padding: 0 0 1.25rem 0;
}

.break-all {
    word-break: break-all;
}

.responsive-display > p {
    /* width: calc(100% - 15.5rem); */
}

@media (max-width: 1024px) {
    .information-container p {
        /* max-width: 24rem; */
    }
}

@media (max-width: 767px) {
    /* ========== 회원 정보 확인 ========== */
    .tab-container {
        width: 100%;
        /* max-width: 100vh; */
    }
    .user-info-container {
        margin: 6rem auto 3rem auto;;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .title {
        font-size: 1.5rem;
        line-height: 2rem;
        /* transition: all ease 2s 0s; */
    }

    /* ========== 회원 정보 수정 ========== */
    .information-container .responsive-display {
        display: block;
        flex: none;
    }

    .information-container label {
        max-width: 100%;
        margin-bottom: 0.5rem;
    }

    .information-container button {
        padding: 0.625rem 1rem;
        justify-content: center;
        align-items: center;
        gap: 0.375rem;
    }
}
