/* 新建会议页：居中卡片布局 */

.newcall-page .body-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.newcall-page .site-content,
.newcall-page .newcall-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px 40px;
}

.newcall-page .newcall-panel {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.newcall-page .newcall-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.newcall-page .newcall-header img {
    width: 36px;
    height: 36px;
}

.newcall-page .newcall-header span {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.newcall-page #newCallRoomTitle {
    margin: 0 0 12px;
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.newcall-page #newCallRoomDescription {
    margin: 0 0 28px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    max-width: 480px;
}

.newcall-page .newcall-card {
    padding: 28px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(2, 112, 215, 0.35) 0%, rgba(138, 43, 226, 0.28) 52%, rgba(255, 120, 60, 0.22) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.newcall-page #appJoinDescription {
    margin: 0 0 18px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.newcall-page .form-group-desktop {
    display: flex;
    gap: 10px;
    width: 100%;
}

.newcall-page .room-input-wrap {
    flex: 1;
    min-width: 0;
}

.newcall-page .form-group-desktop .button-primary {
    flex-shrink: 0;
    min-width: 108px;
    white-space: nowrap;
}

.newcall-page .button-custom-room {
    margin-top: 12px;
    width: 100%;
}

.newcall-page .last-room {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
}

.newcall-page .last-room a {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 640px) {
    .newcall-page .form-group-desktop {
        flex-direction: column;
    }

    .newcall-page .form-group-desktop .button-primary {
        width: 100%;
        min-width: 0;
    }

    .newcall-page .newcall-card {
        padding: 22px 18px;
    }
}
