body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fbf6fb;
}

.member-container {
    width: 420px;
    padding: 32px;

    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

    text-align: center;
}

.member-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.member-logo-box {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);

    display: flex;
    align-items: center;
    justify-content: center;
}

.member-logo-box svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.member-title {
    margin: 12px 0 4px;
    font-size: 22px;
    font-weight: 700;
}

.member-subtitle {
    margin-bottom: 28px;
    font-size: 14px;
    color: #6b7280;
}

.member-error {
    margin-bottom: 16px;
    color: #dc2626;
    font-size: 14px;
}

.member-form {
    text-align: left;
}

.member-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
}

.member-input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;

    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f3f4f6;

    font-size: 14px;
    outline: none;
}

.member-input:focus {
    background: #ffffff;
    border-color: #8b5cf6;
}

.member-btn {
    width: 100%;
    padding: 12px 0;

    border: none;
    border-radius: 12px;

    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: #ffffff;

    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.member-btn:hover {
    opacity: 0.95;
}

.member-links {
    margin-top: 20px;
    font-size: 14px;
    color: #6b7280;
}

.member-links a {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 500;
}

.member-demo-box {
    margin-top: 28px;
    padding: 16px 18px;

    background: #faf5ff;
    border: 1.5px solid #c4b5fd;
    border-radius: 14px;

    font-size: 14px;
    line-height: 1.6;
    color: #5b21b6;
    text-align: left;
}

.member-demo-box strong {
    display: block;
    margin-bottom: 8px;

    font-weight: 600;
    color: #6d28d9;
}

