.fc-contact-form {
    max-width: 950px;
    padding: 40px;
    background: #f4f6fb;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
}

.fc-title {
    font-size: 38px;
    font-weight: 700;
    color: #1f2b5b;
    margin-bottom: 35px;
}

.fc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.fc-field {
    position: relative;
    margin-bottom: 25px;
}

.fc-field.full {
    width: 100%;
}

.fc-field input,
.fc-field textarea {
    width: 100%;
    padding: 22px 60px 22px 25px;
    border-radius: 16px;
    border: 1px solid #d9dde7;
    font-size: 18px;
    background: #ffffff;
    outline: none;
}

.fc-field textarea {
    height: 180px;
    resize: none;
}

.fc-field input:focus,
.fc-field textarea:focus {
    border-color: #1f2b5b;
}

.fc-icon {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0.5;
}

.fc-icon.textarea {
    top: 30px;
    transform: none;
}

.fc-contact-form button {
    background: #f59e0b;
    border: none;
    color: white;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
}

.fc-contact-form button:hover {
    background: #e38b06;
}

.fc-success {
    color: green;
    font-weight: bold;
}

.fc-error {
    color: red;
    font-weight: bold;
}

.fc-loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    animation: fc-spin 0.7s linear infinite;
}

@keyframes fc-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fc-contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.fc-response {
    margin-top: 15px;
    border: 1px solid green;
    padding: 10px 10px;
    border-radius: 10px;
}


@media(max-width: 768px){
    .fc-row {
        grid-template-columns: 1fr;
    }

    .fc-title {
        font-size: 28px;
    }
}
