@charset "UTF-8";

/* Links */
a:active,
a:hover,
a:link,
a:visited,
a:visited:hover {
    text-decoration: none;
    color: #666;
}

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

html {
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

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

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

/* Header elements */
.ci-frame {
    flex-shrink: 0;
    width: 109px;
    height: 47px;
    object-fit: cover;
}

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

.signup-title {
    color: #626262;
    font-family: "Pretendard", sans-serif;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Info section */
.info-container {
    background: #ffffff;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.avata-frame {
    border-radius: 50px;
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    position: relative;
    overflow: hidden;
    object-fit: cover;
}

.welcome {
    color: #5d5c5c;
    text-align: center;
    font-family: "Pretendard", sans-serif;
    font-size: 24px;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-text {
    color: #000000;
    text-align: center;
    font-family: "Pretendard", sans-serif;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Notice section */
.notice-container {
    background: var(--member-page-background);
    border: 1px solid #008fe0;
    border-radius: 6px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    align-self: stretch;
    position: relative;
    overflow: hidden;
}

.title-text {
    color: #000;
    text-align: center;
    font-family: "Pretendard", sans-serif;
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    align-self: stretch;
}

.notice-text {
    color: #d30101;
    text-align: left;
    font-family: "Pretendard", sans-serif;
    font-size: 15px;
    line-height: 130%;
    font-weight: 500;
    align-self: stretch;
}

.notice-list {
    padding-left: 20px;
    margin-bottom: 1em;
}

.notice-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 1.5em;
}

/* Agreement section */
.agree-container {
    display: flex;
    flex-direction: row;
    gap: 31px;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    height: 34px;
    position: relative;
    overflow: hidden;
    font-family: "Pretendard", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

/* Button section */
.button-container {
    background: #ffffff;
    padding: 10px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.button-frame {
    padding: 0 83px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.next-button,
.home-button {
    border-radius: 5px;
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.next-button {
    background: var(--button-green);
}

.home-button {
    background: var(--button-red);
}

.next-button-text,
.home-button-text {
    color: var(--white-text, #ffffff);
    text-align: left;
    font-family: "Pretendard", sans-serif;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}