﻿* {
    box-sizing: border-box;
    font-family: 'Malgun Gothic', '맑은 고딕', Arial, sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    color: #1f2937;
}

body {
    min-height: 100vh;
}

a {
    text-decoration: none;
}

.register-page {
    min-height: 100vh;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-wrap {
    width: 100%;
    max-width: 1220px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.register-left {
    background: linear-gradient(135deg, #111827, #0f172a);
    border-radius: 28px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
}

.brand-link {
    display: inline-block;
    margin-bottom: 20px;
}

.brand-logo {
    display: block;
    height: 72px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.brand-title {
    margin: 0 0 14px 0;
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -1px;
}

.brand-desc {
    margin: 0 0 28px 0;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 22px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

    .benefit-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}

.benefit-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.register-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-card {
    width: 100%;
    background: #ffffff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
    border: 1px solid #e5e7eb;
}

.register-card-header {
    margin-bottom: 24px;
}

    .register-card-header h2 {
        margin: 0 0 8px 0;
        font-size: 34px;
        color: #111827;
        font-weight: 900;
    }

    .register-card-header p {
        margin: 0;
        color: #6b7280;
        font-size: 15px;
    }

.message-label {
    display: block;
    min-height: 20px;
    margin-bottom: 12px;
    color: #dc2626;
    font-size: 14px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 16px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        font-weight: 700;
        color: #374151;
    }

.form-input {
    width: 100%;
    height: 52px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
    background: #fff;
}

    .form-input:focus {
        border-color: #f97316;
        box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
    }

.agree-box {
    margin-top: 10px;
    margin-bottom: 18px;
    padding: 14px;
    border-radius: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.check-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 10px;
}

    .check-wrap:last-child {
        margin-bottom: 0;
    }

.register-btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(234, 88, 12, 0.24);
}

    .register-btn:hover {
        filter: brightness(1.02);
    }

.sub-actions {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 14px;
    background: #111827;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

    .sub-btn.light {
        background: #f3f4f6;
        color: #111827;
    }

.bottom-note {
    margin-top: 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.text-link {
    color: #ea580c;
    font-size: 14px;
    font-weight: 700;
}

    .text-link:hover {
        text-decoration: underline;
    }

.bottom-note .strong {
    margin-left: 6px;
}

@media screen and (max-width: 980px) {
    .register-wrap {
        grid-template-columns: 1fr;
    }

    .register-left {
        padding: 30px;
    }

    .register-card {
        padding: 28px;
    }
}

@media screen and (max-width: 768px) {
    .register-page {
        padding: 14px;
    }

    .register-left,
    .register-card {
        border-radius: 22px;
    }

    .register-left {
        padding: 24px;
    }

    .brand-logo {
        height: 56px;
        max-width: 180px;
    }

    .brand-title {
        font-size: 30px;
    }

    .brand-desc {
        font-size: 14px;
    }

    .register-card {
        padding: 22px;
    }

    .register-card-header h2 {
        font-size: 28px;
    }

    .sub-actions {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .register-page {
        padding: 10px;
    }

    .register-left,
    .register-card {
        padding: 18px;
        border-radius: 18px;
    }

    .brand-logo {
        height: 46px;
        max-width: 150px;
    }

    .brand-title {
        font-size: 26px;
    }

    .benefit-card {
        padding: 16px;
    }

    .benefit-item {
        gap: 10px;
    }

    .benefit-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .register-card-header h2 {
        font-size: 24px;
    }

    .form-input,
    .register-btn,
    .sub-btn {
        height: 48px;
    }

    .check-wrap {
        align-items: flex-start;
    }
}
