.cf-179-wrapper {
    background-color: rgba(11, 12, 16, 0.95);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    font-family: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cf-179-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
}

.cf-179-subtitle {
    color: #a0a0a0;
    font-size: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.cf-179-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cf-179-row {
    display: flex;
    gap: 20px;
}

.cf-179-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cf-179-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.cf-179-input {
    background-color: #14161C;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #ffffff;
    padding: 14px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.cf-179-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.cf-179-input:focus {
    outline: none;
    border-color: #8A9A5B;
    box-shadow: 0 0 8px rgba(138, 154, 91, 0.4);
}

.cf-179-textarea {
    resize: vertical;
    min-height: 120px;
}

.cf-179-submit {
    background-color: #8A9A5B;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

.cf-179-submit:hover {
    box-shadow: 0 0 15px rgba(138, 154, 91, 0.6);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .cf-179-row {
        flex-direction: column;
        gap: 20px;
    }
    .cf-179-wrapper {
        padding: 25px 20px;
    }
}