#register-page {
    background-color: var(--bg-body);
    max-width: 1134px;
    padding: 20px;
}

#register-page .register-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

#register-page .register-card-body {
    display: flex;
    flex-direction: column;
    background: var(--bg-body);
    box-shadow: var(--box-shadow-default);
    border-radius: 16px;
    gap: 20px;
    padding: 0;
}

#register-page .register-card-body .register-card-title {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: var(--color-black);
    padding: 20px 0px 0px 30px;
}

#register-page .register-card-body .register-card-content {
    padding: 0px 30px 30px 30px;
}

#register-page .register-card-body .register-card-content .input-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

#register-page .register-card-body .register-card-content .btn-outline-dark {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 12px;
    gap: 8px;
    height: 36px;
    background: var(--bg-black);
    border-radius: 8px;
    font-family: 'Public Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: var(--text-white);
}

#register-page .register-card-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    gap: 20px;
}

#register-page .register-card-footer-text {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-secondary);
}

#register-page .register-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 12px;
    gap: 8px;
    height: 36px;
    width: 180px;
    background: var(--bg-black);
    border-radius: 8px;
    font-family: 'Public Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: var(--text-white);
}

#register-page .register-btn:disabled {
    background: var(--bg-button-disabled);
    color: var(--text-white);
    cursor: not-allowed;
    border: none;
}

#licenseAgreement {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    #phoneAuthContainer {
        display: flex;
        justify-content: start;
        align-items: start;
    }

    #register-page .register-card-footer .register-btn {
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    #phoneAuthContainer {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #idInputWrapper {
        flex-basis: 49%;
        max-width: 49%;
    }
}