/* ========================================
   Login Page Styles
   ======================================== */

/* Page Layout (reuse from apply) */
.page-content {
    display: flex;
    gap: 24px;
    padding: 30px 0 60px;
}

.page-main {
    flex: 1;
    min-width: 0;
}

/* Breadcrumb (reuse from apply) */
.breadcrumb {
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 24px;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb__item {
    font-size: 16px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb__item::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    transform: rotate(-45deg);
}

.breadcrumb__item:last-child::after {
    display: none;
}

.breadcrumb__item:last-child {
    color: #333;
    font-weight: 600;
}

.breadcrumb__home {
    display: flex;
    align-items: center;
}

.breadcrumb__tools {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.breadcrumb__tool {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: color 0.2s, border-color 0.2s;
}

.breadcrumb__tool:hover {
    color: #333;
    border-color: #999;
}

/* Section Title */
.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
}

/* ----------------------------------------
   Login Columns
   ---------------------------------------- */
.login-columns {
    display: flex;
    gap: 0;
    border: 1px solid #ddd;
    margin-bottom: 30px;
}

.login-column {
    flex: 1;
    padding: 40px 30px;
    border-right: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-column:last-child {
    border-right: none;
}

.login-column__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4f8;
    border-radius: 50%;
    color: #2c3e50;
    margin-bottom: 16px;
}

.login-column__title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.login-column__desc {
    font-size: 15px;
    color: #888;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Certificate Login Column */
.login-column--cert {
    background: #fafbfc;
}

.login-column--cert .login-column__cert-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: #2c3e50;
    color: #fff;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.2s;
    cursor: pointer;
}

.login-column--cert .login-column__cert-btn:hover {
    background: #34495e;
}


.login-column--cert .login-column__certinfo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
	margin-top:8px;
    padding: 7px 20px;
    background: #FFFFFF;
    color: #000;
	border: solid 1px #000;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.2s;
    cursor: pointer;
}

.login-column--cert .login-column__certinfo-btn:hover {
    background: #F2F2F2;
}


.login-column__cert-info {
    margin-top: 16px;
    font-size: 14px;
    color: #999;
    text-align: center;
    line-height: 1.8;
}

/* General Login Column */
.login-form {
    width: 100%;
}

.login-form__group {
    margin-bottom: 12px;
	width: 100%;
}

.login-form__input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 18px;
    color: #333;
    transition: border-color 0.2s;
}

.login-form__input:focus {
    border-color: #3498db;
    outline: none;
}

.login-form__options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.login-form__remember {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: #666;
    cursor: pointer;
}

.login-form__remember input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: #3498db;
}

.login-form__security {
    font-size: 15px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
}

.login-form__submit {
    width: 100%;
    padding: 14px;
    background: #3498db;
    color: #fff;
    border-radius: 6px;
    font-size: 19px;
    font-weight: 700;
    text-align: center;
    transition: background 0.2s;
    cursor: pointer;
}

.login-form__submit:hover {
    background: #2980b9;
}

/* SNS Login Column */
.sns-login__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sns-login__btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: opacity 0.2s;
    cursor: pointer;
}

.sns-login__btn:hover {
    opacity: 0.9;
}

.sns-login__btn--naver {
    background: #03C75A;
    color: #fff;
}

.sns-login__btn--kakao {
    background: #FEE500;
    color: #3C1E1E;
}

.sns-login__btn--google {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.sns-login__btn--apple {
    background: #000;
    color: #fff;
}

.sns-login__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ----------------------------------------
   Login Bottom Actions
   ---------------------------------------- */
.login-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.login-actions__btn {
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    cursor: pointer;
}

.login-actions__btn--join {
    background: #2c3e50;
    color: #fff;
}

.login-actions__btn--join:hover {
    background: #34495e;
}

.login-actions__btn--find {
    background: #fff;
    color: #555;
    border: 1px solid #ddd;
}

.login-actions__btn--find:hover {
    border-color: #999;
    color: #333;
}

/* Login Phone Info */
.login-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
}

.login-phone__item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.login-phone__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f4fd;
    border-radius: 50%;
    color: #3498db;
}

.login-phone__label {
    font-size: 15px;
    color: #888;
}

.login-phone__number {
    font-size: 25px;
    font-weight: 800;
    color: #2c3e50;
}

/* ----------------------------------------
   Sidebar (reused from apply page)
   ---------------------------------------- */
.page-sidebar {
    width: 160px;
    flex-shrink: 0;
}

.sidebar-quick {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.sidebar-quick__title {
    padding: 10px 12px;
    background: #2c3e50;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.sidebar-quick__item {
    padding: 14px 12px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.sidebar-quick__item:last-child {
    border-bottom: none;
}

.sidebar-quick__term {
    font-size: 15px;
    color: #888;
    font-weight: 600;
}

.sidebar-quick__dday {
    display: inline-block;
    padding: 2px 10px;
    background: #e67e22;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    margin: 4px 0;
}

.sidebar-quick__month {
    font-size: 35px;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
}

.sidebar-quick__date {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.sidebar-quick__btn {
    display: block;
    padding: 6px 12px;
    background: #2c3e50;
    color: #fff;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s;
}

.sidebar-quick__btn:hover {
    background: #34495e;
}

/* Sidebar Banners */
.sidebar-banner {
    width: 100%;
    padding: 16px 10px;
    background: #f0f4f8;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    border: 2px solid transparent;
}

.sidebar-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #e67e22;
}

.sidebar-banner__title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.sidebar-banner__sub {
    font-size: 14px;
    color: #888;
}

/* Sidebar Contact */
.sidebar-contact {
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 14px 12px;
    margin-bottom: 12px;
}

.sidebar-contact__title {
    font-size: 14px;
    color: #888;
    margin-bottom: 4px;
}

.sidebar-contact__number {
    font-size: 23px;
    font-weight: 800;
    color: #2c3e50;
}

.sidebar-contact__ext {
    font-size: 14px;
    color: #999;
}

.sidebar-hours {
    background: #e8f4fd;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}

.sidebar-hours__title {
    font-size: 15px;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 6px;
    display: inline-block;
    padding: 2px 8px;
    border: 1px solid #2980b9;
    border-radius: 3px;
}

.sidebar-hours__text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}
