/* 策略表单样式 */
.strategy-form-container {
    position: relative;
    padding: 120px 0;
    width: 100%;
    overflow: hidden;
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    perspective: 1000px;
    color: #fff;
}

/* 背景层 */
.form-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* 渐变背景 - 增强色彩深度 */
.form-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #170030 0%, 
        #290059 20%, 
        #3a0080 40%, 
        #4600a3 60%, 
        #5500c7 80%, 
        #6100e6 100%);
    z-index: 1;
}

/* 粒子背景 */
.form-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(128, 0, 255, 0.3) 0%, rgba(128, 0, 255, 0) 40%),
        radial-gradient(circle at 85% 30%, rgba(184, 99, 255, 0.3) 0%, rgba(184, 99, 255, 0) 50%),
        radial-gradient(circle at 50% 80%, rgba(64, 0, 255, 0.3) 0%, rgba(64, 0, 255, 0) 60%);
    z-index: 2;
    opacity: 0.7;
}

/* 网格背景 */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 30px 30px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    z-index: 3;
    opacity: 0.8;
    transform: perspective(1000px) rotateX(60deg) scale(2.5);
    transform-origin: center 70%;
    filter: blur(0.2px);
    animation: grid-pulse 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes grid-pulse {
    0% {
        opacity: 0.5;
        background-size: 30px 30px;
    }
    50% {
        opacity: 0.8;
        background-size: 35px 35px;
    }
    100% {
        opacity: 0.5;
        background-size: 30px 30px;
    }
}

/* 浮动元素 */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(5px);
    animation: float-random 15s ease-in-out infinite alternate;
}

.element-1 {
    top: 15%;
    left: 75%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at center, #ff66ff 0%, transparent 70%);
    animation-delay: 0s;
}

.element-2 {
    top: 65%;
    left: 25%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, #00ccff 0%, transparent 70%);
    animation-delay: 2s;
}

.element-3 {
    top: 35%;
    left: 85%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at center, #ffcc00 0%, transparent 70%);
    animation-delay: 4s;
}

@keyframes float-random {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.1;
    }
}

/* 光束效果 */
.light-beams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0.1;
    mix-blend-mode: screen;
}

.light-beam {
    position: absolute;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transform-origin: top center;
    filter: blur(10px);
}

.beam-1 {
    top: 0;
    left: 30%;
    width: 3px;
    height: 100%;
    transform: rotate(30deg) translateY(-50%);
    animation: beam-move 10s ease-in-out infinite alternate;
}

.beam-2 {
    top: 0;
    left: 55%;
    width: 5px;
    height: 100%;
    transform: rotate(-15deg) translateY(-30%);
    animation: beam-move 15s ease-in-out 2s infinite alternate;
}

@keyframes beam-move {
    0% {
        transform: rotate(var(--rotate, 30deg)) translateY(-50%);
        opacity: 0.05;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: rotate(calc(var(--rotate, 30deg) + 20deg)) translateY(-50%);
        opacity: 0.05;
    }
}

/* 表单页头部 */
.form-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

/* 标题徽章 */
.header-badge {
    display: inline-block;
    background: linear-gradient(90deg, #ff3399, #ff33cc);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(255, 51, 153, 0.4);
    letter-spacing: 1px;
}

.header-badge::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: badge-shine 3s infinite linear;
}

@keyframes badge-shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.form-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 30px rgba(96, 0, 255, 0.2);
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
    letter-spacing: 2px;
}

.title-main, .title-sub {
    display: inline-block;
    position: relative;
    z-index: 2;
}

.title-main {
    color: #ffffff;
    background: linear-gradient(to right, #ffffff, #d0b0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 0;
}

.title-sub {
    color: #ffffff;
    background: linear-gradient(to right, #ffffff, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-decoration {
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0 15px;
    display: inline-block;
}

.title-decoration:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #00e5ff, #b280ff, #ff66d9);
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(178, 128, 255, 0.8);
    transform: translateY(-50%);
}

/* 副标题 */
.subtitle-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 500;
    max-width: 700px;
    margin: 20px auto 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

/* 表单包装器 */
.strategy-form-wrapper {
    max-width: 700px;
    margin: 30px auto 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    position: relative;
    z-index: 5;
}

@media (min-width: 992px) {
    .strategy-form-wrapper {
        padding: 50px 60px;
        margin: 40px auto 0;
    }
}

@media (min-width: 1400px) {
    .strategy-form-wrapper {
        margin-right: 320px; /* 为侧边栏留出空间 */
    }
}

/* 表单样式 */
.strategy-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.strategy-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}

/* 表单步骤 */
.form-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: linear-gradient(135deg, #ff3399, #ff33cc);
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(255, 51, 153, 0.5);
}

.step.active .step-label {
    color: white;
    font-weight: 600;
}

.step.completed .step-number {
    background: linear-gradient(135deg, #33ccff, #3399ff);
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
}

.step-connector {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 5px;
    position: relative;
    top: -12px;
}

/* 表单内容 */
.form-content {
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.form-page {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.form-page.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
    pointer-events: all;
}

/* 页面标题 */
.page-title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.page-title i {
    margin-right: 12px;
    color: #ff33cc;
    font-size: 28px;
}

/* 表单组 */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

/* 输入包装器 */
.input-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 14px 15px 14px 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: rgba(255, 51, 204, 0.5);
    box-shadow: 0 0 15px rgba(255, 51, 204, 0.2);
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within i {
    color: #ff33cc;
}

/* 文本输入 */
.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.5;
}

/* 特定输入样式 */
.input-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

/* 输入占位符 */
.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder,
.input-wrapper select:invalid {
    color: rgba(255, 255, 255, 0.4);
}

/* 定位按钮 */
.location-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-btn i {
    position: static;
    transform: none;
    font-size: 16px;
}

.location-btn:hover {
    background: rgba(255, 51, 204, 0.2);
}

.location-btn:hover i {
    color: #ff33cc;
}

/* 文本区域包装器 */
.textarea-wrapper {
    padding-top: 40px;
}

.textarea-wrapper i {
    top: 20px;
    transform: none;
}

.textarea-wrapper textarea {
    resize: none;
    height: 100px;
}

/* 字符计数器 */
.char-counter {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* 单选按钮组 */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
}

.radio-option {
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    font-weight: 400;
}

.radio-icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-right: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + label .radio-icon {
    border-color: #ff33cc;
    background: rgba(255, 51, 204, 0.1);
}

.radio-option input[type="radio"]:checked + label .radio-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff33cc;
}

/* 复选框组 */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
}

.checkbox-option {
    position: relative;
    min-width: calc(50% - 15px);
}

.checkbox-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    font-weight: 400;
}

.checkbox-icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    margin-right: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-option input[type="checkbox"]:checked + label .checkbox-icon {
    border-color: #ff33cc;
    background: rgba(255, 51, 204, 0.1);
}

.checkbox-option input[type="checkbox"]:checked + label .checkbox-icon::after {
    content: "";
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 10px;
    border-right: 2px solid #ff33cc;
    border-bottom: 2px solid #ff33cc;
}

/* 日期范围组 */
.date-range-group {
    margin-top: 30px;
}

.date-range {
    display: flex;
    align-items: center;
    gap: 15px;
}

.date-input {
    flex: 1;
}

.date-separator {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* 服务条款同意 */
.accept-terms {
    margin-top: 30px;
}

.accept-terms .checkbox-option {
    width: 100%;
}

.terms-link, .privacy-link {
    color: #ff33cc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.terms-link:hover, .privacy-link:hover {
    text-decoration: underline;
}

/* 按钮组 */
.form-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    font-family: inherit;
}

.btn i {
    transition: all 0.3s ease;
}

.btn-prev {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-prev i {
    margin-right: 8px;
}

.btn-prev:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-prev:hover i {
    transform: translateX(-3px);
}

.btn-next, .btn-submit {
    background: linear-gradient(90deg, #9333EA, #7E22CE);
    color: white;
    box-shadow: 0 10px 20px rgba(126, 34, 206, 0.3);
}

.btn-next i, .btn-submit i {
    margin-left: 8px;
}

.btn-next:hover, .btn-submit:hover {
    box-shadow: 0 15px 25px rgba(126, 34, 206, 0.4);
    transform: translateY(-2px);
}

.btn-next:hover i, .btn-submit:hover i {
    transform: translateX(3px);
}

/* 提交成功页面 */
.success-page {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.success-icon {
    font-size: 80px;
    color: #33cc66;
    margin-bottom: 30px;
    animation: success-pulse 2s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(51, 204, 102, 0.5);
}

@keyframes success-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-message {
    background: rgba(51, 204, 102, 0.1);
    border-left: 4px solid #33cc66;
    padding: 15px 20px;
    margin: 25px 0;
    text-align: left;
    border-radius: 0 8px 8px 0;
}

.success-message p {
    margin: 5px 0 !important;
}

.success-message strong {
    color: #33cc66;
}

.success-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    background: linear-gradient(to right, #33cc66, #66ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.success-details p {
    margin: 12px 0;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-home, .btn-contact {
    padding: 12px 25px;
}

.btn-home {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-contact {
    background: linear-gradient(90deg, #33ccff, #3399ff);
    color: white;
    box-shadow: 0 10px 20px rgba(51, 153, 255, 0.3);
}

/* 表单侧边信息 */
.form-side-info {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 300px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 30px;
    display: none;
}

@media (min-width: 1400px) {
    .form-side-info {
        display: flex;
        right: 3%;
    }
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transform: translateX(30px);
    opacity: 0;
    animation: slide-in 0.6s ease forwards;
}

.info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.info-card:nth-child(2) {
    animation-delay: 0.3s;
}

.info-card:nth-child(3) {
    animation-delay: 0.5s;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ff33cc;
}

.info-card:nth-child(2) .info-icon {
    color: #ffcc33;
}

.info-card:nth-child(3) .info-icon {
    color: #33ccff;
}

.info-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.info-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

/* 响应式样式 */
@media (max-width: 992px) {
    .strategy-form {
        max-width: 700px;
    }
    
    .checkbox-option {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .strategy-form-container {
        padding: 80px 20px;
    }
    
    .form-title {
        font-size: 36px;
        flex-direction: column;
        gap: 8px;
    }
    
    .title-decoration {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .strategy-form {
        padding: 30px 20px;
    }
    
    .form-steps {
        overflow-x: auto;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    
    .step {
        min-width: 100px;
    }
    
    .form-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .date-range {
        flex-direction: column;
        gap: 15px;
    }
    
    .date-separator {
        display: none;
    }
}

@media (max-width: 576px) {
    .form-title {
        font-size: 30px;
    }
    
    .subtitle-description {
        font-size: 16px;
    }
    
    .header-badge {
        font-size: 14px;
        padding: 5px 15px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 12px;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .page-title i {
        font-size: 24px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .input-wrapper {
        padding: 12px 15px 12px 40px;
    }
    
    .input-wrapper i {
        font-size: 16px;
    }
    
    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        font-size: 14px;
    }
} 