.devgrowth-wrapper {
    max-width: 700px;
    margin: 50px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: 'Inter', sans-serif;
}

.devgrowth-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.devgrowth-header p {
    color: #777;
    margin-bottom: 30px;
}

.form-section {
    margin-bottom: 25px;
}

.form-section h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

textarea {
    min-height: 100px;
}

label {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
}

.info-text {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.steps {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    padding-left: 20px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #2F6EA3;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #245a85;
}

.devgrowth-success {
    padding: 20px;
    background: #f4f4f4;
    border-left: 4px solid #2F6EA3;
    border-radius: 8px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 15px;
}

.check-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #2F6EA3; /* color azul branding */
    cursor: pointer;
}