@charset "UTF-8";
/* 공통 설정 */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Pretendard", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--theme-normal-text);
    background-color: var(--theme-background);
    height: auto;
}

a {
    text-decoration: none;
    color: #666;
}
a:hover {
    color: #666;
}

/* 레이아웃 */
.main-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 10px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.container {
    width: 100%;
    background: var(--member-page-background);
    border: 1px solid #008fe0;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.top-null {
    flex: 1;
    height: 32px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* CI / 타이틀 */
.ci-frame {
    flex-shrink: 0;
    width: 109px;
    height: 47px;
    object-fit: cover;
}

.title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: #626262;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    padding: 20px 10px;
    position: relative;
    overflow: hidden;
}

.avatar-container {
    width: 180px;
    height: 180px;
    object-fit: cover;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.welcome-message {
    font-family: "Pretendard", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #515151;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    position: relative;
}

.message-txt,
.message-important {
    font-size: 16px;
    line-height: 130%;
}

.message-txt {
    font-weight: 400;
    color: #515151;
    text-align: center;
}

.message-important {
    font-weight: 600;
    color: #d70000;
}

/* 버튼 영역 */
.join-button {
    background: var(--button-blue);
    border-radius: 5px;
    padding: 13px 14px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    font-family: "Pretendard", sans-serif;
    border: none;
}

.send-text {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    font-family: "Pretendard", sans-serif;
}

.login-info-container {
    background: var(--member-page-background);
    border: 1px solid #008fe0;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.findinfo-frame {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    flex-shrink: 0;
    position: relative;
}

.input-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.label-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #000;
    font-family: "Pretendard", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    width: 70px;
    min-width: 70px;
    overflow: hidden;
}

.input-frame {
    font-family: "Pretendard", sans-serif;
    font-size: 14px;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    color: var(--desc-text-color);
}

.input-field {
    background: #fff;
    border: 0.5px solid #666;
    height: 34px;
    max-width: 100%;
    padding: 0 5px;
    font-family: "Pretendard", sans-serif;
    font-size: 16px;
    color: #000;
    outline: none;
    box-sizing: border-box;
    overflow: hidden;
}

.input-field:focus {
    border: 2px solid #0085ff; /* 굵고 선명한 파란색 테두리 */
}

.error-container {
    background: #fff0f0;
    border-radius: 10px;
    padding: 10px 0;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.error-msg {
    color: #ed0000;
    text-align: center;
    font-family: "Pretendard", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.join-text {
    font-weight: 700;
    color: blue;
    cursor: pointer;
}

.recapcha-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 20px;
}